diff --git a/libs/pbd/pbd/destructible.h b/libs/pbd/pbd/destructible.h index 05d7b14a03..8acbed05e2 100644 --- a/libs/pbd/pbd/destructible.h +++ b/libs/pbd/pbd/destructible.h @@ -32,7 +32,7 @@ class LIBPBD_API Destructible { PBD::Signal0 Destroyed; PBD::Signal0 DropReferences; - void drop_references () { DropReferences(); } + virtual void drop_references () { DropReferences(); } }; }