Convert protobuf values that are unsigned properly to uint in JSON (#2659)

This commit is contained in:
GUVWAF
2023-07-27 20:53:20 +02:00
committed by GitHub
parent 74650ca276
commit 32246850aa
3 changed files with 32 additions and 18 deletions

View File

@@ -45,6 +45,7 @@ class JSONValue
JSONValue(bool m_bool_value);
JSONValue(double m_number_value);
JSONValue(int m_integer_value);
JSONValue(uint m_integer_value);
JSONValue(const JSONArray &m_array_value);
JSONValue(const JSONObject &m_object_value);
JSONValue(const JSONValue &m_source);
@@ -91,4 +92,4 @@ class JSONValue
};
};
#endif
#endif