-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
boost-commitbot
committed
Oct 22, 2024
1 parent
119afdd
commit 6e4c681
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule json
updated
25 files
+1 −0 | .github/workflows/run_fuzzer.yml | |
+1 −0 | CMakeLists.txt | |
+4 −1 | README.md | |
+9 −24 | bench/Jamfile | |
+362 −392 | bench/bench.cpp | |
+0 −5 | bench/bench.jam | |
+5 −0 | bench/boost-json-bench.jam | |
+1 −0 | build/Jamfile | |
+4 −1 | doc/qbk/overview.qbk | |
+1 −0 | fuzzing/.gitignore | |
+4 −0 | fuzzing/CMakeLists.txt | |
+2 −2 | fuzzing/Jamfile | |
+1 −1 | fuzzing/fuzz.sh | |
+84 −0 | fuzzing/fuzz_direct_parse.cpp | |
+1 −0 | fuzzing/old_crashes/direct_parse/array.json | |
+1 −0 | fuzzing/old_crashes/direct_parse/tuple.json | |
+21 −0 | fuzzing/old_crashes/direct_parse/valid_cxx14.json | |
+26 −0 | fuzzing/old_crashes/direct_parse/valid_cxx17.json | |
+14 −0 | include/boost/json/debug_printers.hpp | |
+2 −0 | include/boost/json/detail/config.hpp | |
+1 −5 | include/boost/json/detail/gdb_printers.hpp | |
+74 −74 | include/boost/json/detail/parse_into.hpp | |
+1 −1 | meta/libraries.json | |
+3 −1 | pretty_printers/FindBoostPrettyPrinters.cmake | |
+14 −3 | test/parse_into.cpp |