mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 06:51:17 +01:00
Avoid compile warning by adding virtual destructor.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@208 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
5130365b6d
commit
1aedd4891c
@ -4,7 +4,9 @@
|
||||
#include <string>
|
||||
|
||||
class DebugInterface
|
||||
{
|
||||
{
|
||||
protected:
|
||||
virtual ~DebugInterface() {}
|
||||
public:
|
||||
virtual const char *disasm(unsigned int /*address*/) {return "NODEBUGGER";}
|
||||
virtual int getInstructionSize(int /*instruction*/) {return 1;}
|
||||
|
Loading…
x
Reference in New Issue
Block a user