Skip to content

Commit

Permalink
libs/json/jsoncpp: Update to version 1.9.5 (BespokeSynth#1208)
Browse files Browse the repository at this point in the history
- https://github.com/open-source-parsers/jsoncpp/releases/tag/1.9.5
- open-source-parsers/jsoncpp@1.9.4...1.9.5

Among other things, this paves the way for C++20 in Bespoke, because it
fixes a bug that became a warning in C++20:

- open-source-parsers/jsoncpp@30170d6

***NO_CI***
  • Loading branch information
neuschaefer authored Jun 17, 2023
1 parent 394d088 commit 3a7986c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/json/jsoncpp
Submodule jsoncpp updated 48 files
+1 −1 .clang-tidy
+5 −0 .gitignore
+3 −3 .travis.yml
+1 −1 .travis_scripts/meson_builder.sh
+1 −1 .travis_scripts/run-clang-format.py
+1 −1 .travis_scripts/run-clang-format.sh
+0 −1 .travis_scripts/travis.before_install.osx.sh
+3 −8 .travis_scripts/travis.install.linux.sh
+37 −0 BUILD.bazel
+28 −7 CMakeLists.txt
+5 −2 CONTRIBUTING.md
+7 −7 LICENSE
+8 −3 appveyor.yml
+3 −1 dev.makefile
+1 −1 devtools/antglob.py
+2 −2 devtools/fixeol.py
+2 −2 devtools/licenseupdater.py
+2 −2 doxybuild.py
+2 −2 example/README.md
+1 −0 example/readFromString/readFromString.cpp
+1 −0 example/streamWrite/streamWrite.cpp
+5 −0 get_version.pl
+9 −0 include/PreventInBuildInstalls.cmake
+45 −0 include/PreventInSourceBuilds.cmake
+3 −4 include/json/allocator.h
+6 −4 include/json/reader.h
+9 −9 include/json/value.h
+2 −2 include/json/version.h
+6 −4 include/json/writer.h
+7 −0 jsoncpp-namespaced-targets.cmake
+11 −0 jsoncppConfig.cmake.in
+1 −1 meson.build
+1 −1 pkg-config/jsoncpp.pc.in
+1 −0 reformat.sh
+1 −0 src/jsontestrunner/main.cpp
+26 −38 src/lib_json/CMakeLists.txt
+2 −3 src/lib_json/json_reader.cpp
+7 −3 src/lib_json/json_tool.h
+13 −13 src/lib_json/json_value.cpp
+22 −21 src/lib_json/json_writer.cpp
+50 −0 src/test_lib_json/main.cpp
+1 −1 test/data/legacy_test_array_06.json
+11 −11 test/data/legacy_test_complex_01.json
+1 −1 test/data/legacy_test_object_03.json
+1 −1 test/data/legacy_test_object_04.json
+1 −1 test/data/legacy_test_preserve_comment_01.expected
+1 −1 test/data/legacy_test_preserve_comment_01.json
+4 −4 test/pyjsontestrunner.py

0 comments on commit 3a7986c

Please sign in to comment.