JitWindow: Add missing virtual destructor to HostDisassembler

HostDisassemblerLLVM has a destructor, but the class uses a pointer to the base class.
This commit is contained in:
Lioncash 2015-05-20 12:27:44 -04:00
parent 63ff03ee3e
commit 8dc2909c00

View file

@ -29,6 +29,7 @@ public:
class HostDisassembler
{
public:
virtual ~HostDisassembler() {}
std::string DisassembleBlock(u32* address, u32* host_instructions_count, u32* code_size);
private: