mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-03 11:32:43 +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>
|
#include <string>
|
||||||
|
|
||||||
class DebugInterface
|
class DebugInterface
|
||||||
{
|
{
|
||||||
|
protected:
|
||||||
|
virtual ~DebugInterface() {}
|
||||||
public:
|
public:
|
||||||
virtual const char *disasm(unsigned int /*address*/) {return "NODEBUGGER";}
|
virtual const char *disasm(unsigned int /*address*/) {return "NODEBUGGER";}
|
||||||
virtual int getInstructionSize(int /*instruction*/) {return 1;}
|
virtual int getInstructionSize(int /*instruction*/) {return 1;}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user