diff options
author | David Robillard <d@drobilla.net> | 2010-01-07 16:16:18 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-01-07 16:16:18 +0000 |
commit | 83947382ecff039846cc345e0ccd9c429aa5e1e5 (patch) | |
tree | ef95249f3e1a47d4974bde66d93048921ac4d82f /src/module | |
parent | d179ee1d5dc07dc2bbb33f2a85397de8a6cac08e (diff) | |
download | ingen-83947382ecff039846cc345e0ccd9c429aa5e1e5.tar.gz ingen-83947382ecff039846cc345e0ccd9c429aa5e1e5.tar.bz2 ingen-83947382ecff039846cc345e0ccd9c429aa5e1e5.zip |
Add missing base class virtual destructor stubs.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2366 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/module')
-rw-r--r-- | src/module/Module.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/module/Module.hpp b/src/module/Module.hpp index c9ac198f..7d2aec6e 100644 --- a/src/module/Module.hpp +++ b/src/module/Module.hpp @@ -32,6 +32,7 @@ class World; * All components of Ingen reside in one of these. */ struct Module { + virtual ~Module() {} virtual void load(Ingen::Shared::World* world) = 0; SharedPtr<Glib::Module> library; @@ -41,4 +42,4 @@ struct Module { } // namespace Shared } // namespace Ingen -#endif //INGEN_MODULE_HPP +#endif // INGEN_MODULE_HPP |