We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16b9285 commit 61aeb51Copy full SHA for 61aeb51
1 file changed
eval/public/structs/cel_proto_wrapper.cc
@@ -50,7 +50,7 @@ using google::protobuf::UInt64Value;
50
using google::protobuf::Value;
51
52
// kMaxIntJSON is defined as the Number.MAX_SAFE_INTEGER value per EcmaScript 6.
53
-constexpr int64_t kMaxIntJSON = (1l << 53) - 1;
+constexpr int64_t kMaxIntJSON = (1ll << 53) - 1;
54
55
// kMinIntJSON is defined as the Number.MIN_SAFE_INTEGER value per EcmaScript 6.
56
constexpr int64_t kMinIntJSON = -kMaxIntJSON;
0 commit comments