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 {
33
33
constexpr json::value_t GetType (type<short >) { return json::value_t ::number_integer; }
34
34
constexpr json::value_t GetType (type<int >) { return json::value_t ::number_integer; }
35
35
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; }
36
37
constexpr json::value_t GetType (type<unsigned short >) { return json::value_t ::number_unsigned; }
37
38
constexpr json::value_t GetType (type<unsigned int >) { return json::value_t ::number_unsigned; }
38
39
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; }
39
41
40
42
inline std::string type_name (json::value_t t) {
41
43
switch (t) {
@@ -180,4 +182,4 @@ namespace jsonrpccxx {
180
182
};
181
183
return GetHandle (function);
182
184
}
183
- } // namespace jsonrpccxx
185
+ } // namespace jsonrpccxx
You can’t perform that action at this time.
0 commit comments