mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
InputCommon/Core: Get rid of some virtual destructor warnings
These classes have virtual methods, but no virtual destructor, which causes warnings on some compilers.
This commit is contained in:
@ -128,6 +128,10 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~JitBaseBlockCache()
|
||||
{
|
||||
}
|
||||
|
||||
int AllocateBlock(u32 em_address);
|
||||
void FinalizeBlock(int block_num, bool block_link, const u8 *code_ptr);
|
||||
|
||||
|
Reference in New Issue
Block a user