Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmauro committed May 1, 2024
1 parent 697c1c2 commit 0b74108
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions SUBMODULES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ For each library, verify if the branch/tag is correct.

```
git subtree pull --prefix Source/ZipLib/Source https://github.com/madler/zlib v1.3.1 --squash
git subtree pull --prefix Source/ZipLib/MiniZipSource https://github.com/zlib-ng/minizip-ng 4.0.4 --squash
git subtree pull --prefix Source/OpenSSL/Source https://github.com/openssl/openssl openssl-3.2.1 --squash
git subtree pull --prefix Source/ZipLib/MiniZipSource https://github.com/zlib-ng/minizip-ng 4.0.5 --squash
git subtree pull --prefix Source/OpenSSL/Source https://github.com/openssl/openssl openssl-3.3.0 --squash
git subtree pull --prefix Source/JsLib/DukTape/Source https://github.com/svaarala/duktape v2.7.0 --squash
git subtree pull --prefix Source/JsLib/BigInteger https://github.com/peterolson/BigInteger.js master --squash
git subtree pull --prefix Source/RapidJSON/Source https://github.com/Tencent/rapidjson master --squash
Expand Down
9 changes: 8 additions & 1 deletion Source/RapidJSON/build.vbs
Original file line number Diff line number Diff line change
Expand Up @@ -221,10 +221,17 @@ Dim dtBuildDate, bRebuild
oFile.WriteLine ""
oFile.WriteLine "__inline const Value* LookupMember(_In_ const Value &parent, _In_z_ LPCSTR szMemberNameA)"
oFile.WriteLine "{"
oFile.WriteLine " const rapidjson::Value::ConstMemberIterator &member = parent.FindMember(szMemberNameA);"
oFile.WriteLine " const Value::ConstMemberIterator &member = parent.FindMember(szMemberNameA);"
oFile.WriteLine " return (member != parent.MemberEnd()) ? &(member->value) : NULL;"
oFile.WriteLine "}"
oFile.WriteLine ""
oFile.WriteLine "__inline const Value& LookupMemberRef(_In_ const Value &parent, _In_z_ LPCSTR szMemberNameA)"
oFile.WriteLine "{"
oFile.WriteLine " static const Value nullValue;"
oFile.WriteLine " const Value::ConstMemberIterator &member = parent.FindMember(szMemberNameA);"
oFile.WriteLine " return (member != parent.MemberEnd()) ? member->value : nullValue;"
oFile.WriteLine "}"
oFile.WriteLine ""
oFile.WriteLine "} //namespace rapidjson"
oFile.WriteLine ""
oFile.WriteLine "//------------------------------------------------------------------------------"
Expand Down

0 comments on commit 0b74108

Please sign in to comment.