diff options
| author | j4ck.fr0st <j4ck.fr0st@gmail.com> | 2010-02-12 19:28:51 +0000 |
|---|---|---|
| committer | j4ck.fr0st <j4ck.fr0st@gmail.com> | 2010-02-12 19:28:51 +0000 |
| commit | df1be33ba97ed03817ad174da0325d9fab0fb2f5 (patch) | |
| tree | 07a1a410fb3ff47c8b19c3d94831b6f7e59a0d3a /Source/Core/Common | |
| parent | 99ea22bbf35cf74afff503181028f57b9a3d8d83 (diff) | |
Some more leak hunting/housekeeping, probably wont affect Issue 2184 in a noticeable way tho.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5046 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common')
| -rw-r--r-- | Source/Core/Common/Src/x64Emitter.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/Common/Src/x64Emitter.h b/Source/Core/Common/Src/x64Emitter.h index 399d698f25..dd11468580 100644 --- a/Source/Core/Common/Src/x64Emitter.h +++ b/Source/Core/Common/Src/x64Emitter.h @@ -233,6 +233,7 @@ protected: public: XEmitter() { code = NULL; } XEmitter(u8 *code_ptr) { code = code_ptr; } + virtual ~XEmitter() {} void WriteModRM(int mod, int rm, int reg); void WriteSIB(int scale, int index, int base); |
