TrampolineCache: Make constant constexpr

This commit is contained in:
Lioncash
2016-12-14 04:43:32 -05:00
parent d0c54fe15e
commit 8b6f8892d6
@@ -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
{