File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -33,9 +33,11 @@ namespace jsonrpccxx {
3333 constexpr json::value_t GetType (type<short >) { return json::value_t ::number_integer; }
3434 constexpr json::value_t GetType (type<int >) { return json::value_t ::number_integer; }
3535 constexpr json::value_t GetType (type<long >) { return json::value_t ::number_integer; }
36+ constexpr json::value_t GetType (type<long long >) { return json::value_t ::number_integer; }
3637 constexpr json::value_t GetType (type<unsigned short >) { return json::value_t ::number_unsigned; }
3738 constexpr json::value_t GetType (type<unsigned int >) { return json::value_t ::number_unsigned; }
3839 constexpr json::value_t GetType (type<unsigned long >) { return json::value_t ::number_unsigned; }
40+ constexpr json::value_t GetType (type<unsigned long long >) { return json::value_t ::number_unsigned; }
3941
4042 inline std::string type_name (json::value_t t) {
4143 switch (t) {
@@ -180,4 +182,4 @@ namespace jsonrpccxx {
180182 };
181183 return GetHandle (function);
182184 }
183- } // namespace jsonrpccxx
185+ } // namespace jsonrpccxx
You can’t perform that action at this time.
0 commit comments