summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorMarkus Wick <markus+github@selfnet.de>2015-05-20 18:56:39 +0200
committerMarkus Wick <markus+github@selfnet.de>2015-05-20 18:56:39 +0200
commit23f6e192787d479bbd2dfb6ca65e9a7db42e0319 (patch)
tree4005d35b803ca58bdce7c415eb0f37e57ae0f31a /Source
parent63ff03ee3e3acd11f13cf5f67631ea3c71a83503 (diff)
parent8dc2909c001e57fc9ff1d9e1e2b1d8b61a2a4e0d (diff)
Merge pull request #2427 from lioncash/virt
JitWindow: Add missing virtual destructor to HostDisassembler
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/DolphinWX/Debugger/JitWindow.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/Debugger/JitWindow.h b/Source/Core/DolphinWX/Debugger/JitWindow.h
index 482553d5e8..05ab04fe30 100644
--- a/Source/Core/DolphinWX/Debugger/JitWindow.h
+++ b/Source/Core/DolphinWX/Debugger/JitWindow.h
@@ -29,6 +29,7 @@ public:
class HostDisassembler
{
public:
+ virtual ~HostDisassembler() {}
std::string DisassembleBlock(u32* address, u32* host_instructions_count, u32* code_size);
private: