From 37dbe3a3c6f563782f6dd66acbfbd686645b15d6 Mon Sep 17 00:00:00 2001 From: EntireTwix Date: Wed, 9 Jun 2021 19:36:39 -0700 Subject: [PATCH] made system indepdent --- include/bank_f.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bank_f.hpp b/include/bank_f.hpp index 988eb93..f93979a 100644 --- a/include/bank_f.hpp +++ b/include/bank_f.hpp @@ -19,7 +19,7 @@ INLINE Json::Value JsonReturn(T &&val) { res["value"] = (int)val; //becuase of json lib interpreting 67 as 'A' for example } - else if constexpr (std::is_same_v) + else if constexpr (std::is_same_v) { res["value"] = (Json::Int64)val; }