Skip to content
Snippets Groups Projects
Commit e916584e authored by Juan Hernando's avatar Juan Hernando
Browse files

Missing virtual destructors.

parent f4fd9e65
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,8 @@ Makefile.in ...@@ -9,6 +9,8 @@ Makefile.in
config.guess config.guess
config.h.in config.h.in
config.h config.h
config.log
config.status
config.sub config.sub
Makefile Makefile
......
...@@ -32,6 +32,7 @@ namespace MUSIC { ...@@ -32,6 +32,7 @@ namespace MUSIC {
class EventHandlerGlobalIndex { class EventHandlerGlobalIndex {
public: public:
virtual ~EventHandlerGlobalIndex() { }
virtual void operator () (double t, GlobalIndex id) = 0; virtual void operator () (double t, GlobalIndex id) = 0;
}; };
...@@ -55,6 +56,7 @@ namespace MUSIC { ...@@ -55,6 +56,7 @@ namespace MUSIC {
class EventHandlerLocalIndex { class EventHandlerLocalIndex {
public: public:
virtual ~EventHandlerLocalIndex() { }
virtual void operator () (double t, LocalIndex id) = 0; virtual void operator () (double t, LocalIndex id) = 0;
}; };
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment