summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-05-20 12:27:44 -0400
committerLioncash <mathew1800@gmail.com>2015-05-20 12:27:47 -0400
commit8dc2909c001e57fc9ff1d9e1e2b1d8b61a2a4e0d (patch)
tree4005d35b803ca58bdce7c415eb0f37e57ae0f31a /Source/Core
parent63ff03ee3e3acd11f13cf5f67631ea3c71a83503 (diff)
JitWindow: Add missing virtual destructor to HostDisassembler
HostDisassemblerLLVM has a destructor, but the class uses a pointer to the base class.
Diffstat (limited to 'Source/Core')
-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: