From e924814d62587f41194562ec07db96e8e89df2c5 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 17 Jan 2017 14:45:40 -0500 Subject: [PATCH] JitILBase: Move protected members below public --- Source/Core/Core/PowerPC/JitILCommon/JitILBase.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/Core/Core/PowerPC/JitILCommon/JitILBase.h b/Source/Core/Core/PowerPC/JitILCommon/JitILBase.h index 228ccd269d..b5656d874b 100644 --- a/Source/Core/Core/PowerPC/JitILCommon/JitILBase.h +++ b/Source/Core/Core/PowerPC/JitILCommon/JitILBase.h @@ -12,11 +12,6 @@ class JitILBase : public Jitx86Base { -protected: - // The default code buffer. We keep it around to not have to alloc/dealloc a - // large chunk of memory for each recompiled block. - PPCAnalyst::CodeBuffer code_buffer; - public: JitILBase() : code_buffer(32000) {} ~JitILBase() {} @@ -128,4 +123,9 @@ public: void subfcx(UGeckoInstruction inst); void subfx(UGeckoInstruction inst); void subfex(UGeckoInstruction inst); + +protected: + // The default code buffer. We keep it around to not have to alloc/dealloc a + // large chunk of memory for each recompiled block. + PPCAnalyst::CodeBuffer code_buffer; };