warning fix

InstructionFilter needs virtual destructor (Effective C++, Item 14)

Change-Id: I52422c3e8ec1c40c93cb83a0591910837efb00b5
This commit is contained in:
Björn Döbel
2013-08-27 10:06:33 +02:00
parent da7f9caf64
commit 1fefef06b0

View File

@ -26,6 +26,7 @@ public:
* @returns \c true if the instruction should be included, \c false otherwise
*/
virtual bool isValidInstr(address_t ip, char const *instr) const = 0;
virtual ~InstructionFilter() {}
};
/**