Skip to content

Commit

Permalink
Updated toml11 to 3.8.1
Browse files Browse the repository at this point in the history
There are newer toml11 releases (4.x), but this is the last release in the 3.x series.
  • Loading branch information
patrikhuber committed Dec 9, 2024
1 parent 526b447 commit e7c6072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3rdparty/toml11
Submodule toml11 updated 68 files
+1 −1 .circleci/config.yml
+6 −0 .clusterfuzzlite/Dockerfile
+3 −0 .clusterfuzzlite/README.md
+6 −0 .clusterfuzzlite/build.sh
+16 −0 .clusterfuzzlite/parse_fuzzer.cpp
+1 −0 .clusterfuzzlite/project.yaml
+13 −0 .editorconfig
+30 −0 .github/workflows/cflite_pr.yml
+166 −35 .github/workflows/main.yml
+0 −337 .travis.yml
+8 −3 CMakeLists.txt
+134 −19 README.md
+1 −1 appveyor.yml
+97 −45 tests/CMakeLists.txt
+2 −1 tests/check.cpp
+3 −2 tests/check_serialization.cpp
+3 −2 tests/check_toml_test.cpp
+2 −8 tests/test_comments.cpp
+2 −7 tests/test_datetime.cpp
+4 −8 tests/test_error_detection.cpp
+6 −10 tests/test_expect.cpp
+3 −7 tests/test_extended_conversions.cpp
+7 −13 tests/test_find.cpp
+8 −11 tests/test_find_or.cpp
+8 −16 tests/test_find_or_recursive.cpp
+3 −7 tests/test_format_error.cpp
+8 −12 tests/test_get.cpp
+8 −11 tests/test_get_or.cpp
+2 −2 tests/test_lex_boolean.cpp
+2 −2 tests/test_lex_datetime.cpp
+4 −3 tests/test_lex_floating.cpp
+2 −2 tests/test_lex_integer.cpp
+2 −2 tests/test_lex_key_comment.cpp
+2 −2 tests/test_lex_string.cpp
+3 −7 tests/test_literals.cpp
+17 −22 tests/test_parse_array.cpp
+18 −1 tests/test_parse_aux.hpp
+2 −7 tests/test_parse_boolean.cpp
+2 −7 tests/test_parse_datetime.cpp
+97 −49 tests/test_parse_file.cpp
+11 −8 tests/test_parse_floating.cpp
+5 −10 tests/test_parse_inline_table.cpp
+31 −7 tests/test_parse_integer.cpp
+2 −7 tests/test_parse_key.cpp
+15 −7 tests/test_parse_string.cpp
+3 −8 tests/test_parse_table.cpp
+2 −7 tests/test_parse_table_key.cpp
+5 −9 tests/test_parse_unicode.cpp
+4 −5 tests/test_result.cpp
+66 −24 tests/test_serialize_file.cpp
+2 −3 tests/test_string.cpp
+6 −11 tests/test_traits.cpp
+4 −8 tests/test_utility.cpp
+3 −7 tests/test_value.cpp
+23 −0 tests/unit_test.hpp
+1 −1 toml.hpp
+45 −0 toml/color.hpp
+18 −6 toml/comments.hpp
+16 −16 toml/datetime.hpp
+19 −1 toml/exception.hpp
+35 −0 toml/get.hpp
+14 −13 toml/lexer.hpp
+1 −1 toml/literal.hpp
+247 −52 toml/parser.hpp
+3 −4 toml/region.hpp
+74 −2 toml/serializer.hpp
+9 −3 toml/source_location.hpp
+5 −3 toml/value.hpp

0 comments on commit e7c6072

Please sign in to comment.