From 8b6f8892d6bc43fbac815aff47bc8a78b0db4ad4 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 13 Dec 2016 19:03:18 -0500 Subject: [PATCH] TrampolineCache: Make constant constexpr --- Source/Core/Core/PowerPC/Jit64Common/TrampolineCache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/Jit64Common/TrampolineCache.h b/Source/Core/Core/PowerPC/Jit64Common/TrampolineCache.h index 7e4cac8b2f..c9f2bcb41e 100644 --- a/Source/Core/Core/PowerPC/Jit64Common/TrampolineCache.h +++ b/Source/Core/Core/PowerPC/Jit64Common/TrampolineCache.h @@ -8,7 +8,7 @@ #include "Core/PowerPC/Jit64Common/Jit64Util.h" // We need at least this many bytes for backpatching. -const int BACKPATCH_SIZE = 5; +constexpr int BACKPATCH_SIZE = 5; class TrampolineCache : public EmuCodeBlock {