mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-07 16:49:27 +00:00
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:
parent
63ff03ee3e
commit
8dc2909c00
1 changed files with 1 additions and 0 deletions
|
@ -29,6 +29,7 @@ public:
|
||||||
class HostDisassembler
|
class HostDisassembler
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
virtual ~HostDisassembler() {}
|
||||||
std::string DisassembleBlock(u32* address, u32* host_instructions_count, u32* code_size);
|
std::string DisassembleBlock(u32* address, u32* host_instructions_count, u32* code_size);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue