Update Globals.h

master
Julian Laubstein 2014-06-03 21:32:46 +02:00
parent 7e2effb2d8
commit 1499426472
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ template <typename Type> class cItemCallback
public:
/// Called for each item in the internal list; return true to stop the loop, or false to continue enumerating
virtual bool Item(Type * a_Type) = 0;
virtual ~cItemCallback();
virtual ~cItemCallback() {};
} ;