Skip to content

Commit b6cfc86

Browse files
committed
Fix rapidjson when using newer compilers (g++14 onwards)
It points to the next commit after the last tag done in the project that fixes the GenericStringRef::operator=. See Tencent/rapidjson#718 for more context.
1 parent 3c2691f commit b6cfc86

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

binding/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ if(NOT CCAPI_LEGACY_USE_WEBSOCKETPP)
122122
include(ExternalProject)
123123
ExternalProject_Add(
124124
rapidjson
125-
URL https://github.com/Tencent/rapidjson/archive/refs/tags/v1.1.0.tar.gz
125+
URL https://github.com/Tencent/rapidjson/archive/3b2441b87f99ab65f37b141a7b548ebadb607b96.tar.gz
126126
SOURCE_DIR "${CMAKE_BINARY_DIR}/rapidjson"
127127
CONFIGURE_COMMAND ""
128128
BUILD_COMMAND ""

example/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ if(NOT RAPIDJSON_INCLUDE_DIR)
3333
include(ExternalProject)
3434
ExternalProject_Add(
3535
rapidjson
36-
URL https://github.com/Tencent/rapidjson/archive/refs/tags/v1.1.0.tar.gz
36+
URL https://github.com/Tencent/rapidjson/archive/3b2441b87f99ab65f37b141a7b548ebadb607b96.tar.gz
3737
SOURCE_DIR "${CMAKE_BINARY_DIR}/rapidjson"
3838
CONFIGURE_COMMAND ""
3939
BUILD_COMMAND ""

0 commit comments

Comments
 (0)