Util: Add size() getter to Json::Value

This commit is contained in:
Riyyi
2022-07-07 09:47:34 +02:00
parent 66774364fd
commit 0465d5802a
2 changed files with 22 additions and 1 deletions
+1
View File
@@ -66,6 +66,7 @@ public:
// --------------------------------------
Type type() const { return m_type; }
size_t size() const;
bool asBool() const { return m_value.asBool; }
double asDouble() const { return m_value.asDouble; }