libpbd: fix return type of Signal<>::size()

This commit is contained in:
Paul Davis 2023-04-21 11:44:46 -06:00
parent 70e56ba4e9
commit 5dc75694f0
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ def signal(f, n, v):
\t}
""", file=f)
print("""
\tbool size () const {
\tsize_t size () const {
\t\tGlib::Threads::Mutex::Lock lm (_mutex);
\t\treturn _slots.size ();
\t}