Bump rapidjson version (#6906)

This commit is contained in:
Siarhei Fedartsou
2024-05-27 08:31:59 +02:00
committed by GitHub
parent 667fd198ac
commit 163a2cfe3c
151 changed files with 14287 additions and 2363 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ int main(int, char*[]) {
printf("n = %s\n", document["n"].IsNull() ? "null" : "?");
assert(document["i"].IsNumber()); // Number is a JSON type, but C++ needs more specific type.
assert(document["i"].IsInt()); // In this case, IsUint()/IsInt64()/IsUInt64() also return true.
assert(document["i"].IsInt()); // In this case, IsUint()/IsInt64()/IsUint64() also return true.
printf("i = %d\n", document["i"].GetInt()); // Alternative (int)document["i"]
assert(document["pi"].IsNumber());