rapidjson
rapidjson copied to clipboard
Gtest requires C++14, but Rapidjson uses C++11: this breaks building tests
Gtest requires C++14, but Rapidjson is set to use C++11 and enforces it. This breaks building tests.
(Edited, because earlier report is irrelevant.)
For building the tests successfully with Gtest >= 1.13.0 it is sufficient to set -DRAPIDJSON_BUILD_CXX11=OFF and specify CXXFLAGS=-std=c++14.
Could -DRAPIDJSON_BUILD_CXX11=OFF be made the default?