From 2cd8f928a788e0ed82552c2953cd83af26da255c Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Fri, 31 May 2013 22:15:49 -0700 Subject: [PATCH] Just disable the this constructor warning here. --- Core/MIPS/x86/Jit.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Core/MIPS/x86/Jit.cpp b/Core/MIPS/x86/Jit.cpp index 6ca0000b47..064fee39c1 100644 --- a/Core/MIPS/x86/Jit.cpp +++ b/Core/MIPS/x86/Jit.cpp @@ -98,6 +98,8 @@ static void JitLogMiss(u32 op) func(op); } +// JitBlockCache doesn't use this, just stores it. +#pragma warning(disable:4355) Jit::Jit(MIPSState *mips) : blocks(mips, this), mips_(mips) { blocks.Init();