Merge pull request #2333 from lioncash/virt

InputCommon/Core: Get rid of some virtual destructor warnings
This commit is contained in:
Matthew Parlane 2015-04-28 15:41:48 +12:00
commit 42ebf5b3bf
2 changed files with 8 additions and 1 deletions

View file

@ -128,6 +128,10 @@ public:
{
}
virtual ~JitBaseBlockCache()
{
}
int AllocateBlock(u32 em_address);
void FinalizeBlock(int block_num, bool block_link, const u8 *code_ptr);