From 1854a78c56a215aca8e5573c921c64a50b7113f0 Mon Sep 17 00:00:00 2001 From: Michelle McDaniel Date: Thu, 9 Feb 2017 13:09:33 -0800 Subject: Replace binary literal with hex The desktop build breaks with the binary literal used in the fat pointer mask. Replace it with a hex equivalent. --- src/jit/flowgraph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jit/flowgraph.cpp b/src/jit/flowgraph.cpp index 47a93d6bb9..50318b0940 100644 --- a/src/jit/flowgraph.cpp +++ b/src/jit/flowgraph.cpp @@ -24205,7 +24205,7 @@ private: var_types pointerType; bool doesReturnValue; - const int FAT_POINTER_MASK = 0b00000010; + const int FAT_POINTER_MASK = 0x2; const int HIGH_PROBABILITY = 80; }; -- cgit v1.2.3