Skip to content

Commit

Permalink
Update CLI11
Browse files Browse the repository at this point in the history
  • Loading branch information
captainurist committed Oct 17, 2023
1 parent ba457aa commit ad2b79c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thirdparty/cli11
Submodule cli11 updated 53 files
+11 −1 .all-contributorsrc
+2 −2 .github/actions/quick_cmake/action.yml
+91 −0 .github/workflows/docs.yml
+2 −2 .github/workflows/fuzz.yml
+72 −21 .github/workflows/tests.yml
+5 −5 .pre-commit-config.yaml
+44 −42 CMakeLists.txt
+168 −232 README.md
+14 −1 azure-pipelines.yml
+18 −1 book/chapters/config.md
+137 −11 book/chapters/installation.md
+25 −3 book/chapters/options.md
+14 −0 book/package.json
+6 −2 cmake/CLI11GeneratePkgConfig.cmake
+11 −0 cmake/CLI11precompiled.pc.in
+10 −0 cmake/CLIsingle.hpp.in
+1 −1 cmake/CodeCoverage.cmake
+7 −4 fuzz/CMakeLists.txt
+21 −2 fuzz/cli11_app_fuzz.cpp
+1 −1 fuzz/cli11_file_fuzz.cpp
+47 −5 fuzz/fuzzApp.cpp
+15 −0 fuzz/fuzzApp.hpp
+124 −0 fuzz/fuzz_dictionary1.txt
+47 −0 fuzz/fuzz_dictionary2.txt
+14 −0 include/CLI/App.hpp
+11 −0 include/CLI/Argv.hpp
+3 −0 include/CLI/Error.hpp
+2 −1 include/CLI/Option.hpp
+2 −3 include/CLI/StringTools.hpp
+46 −35 include/CLI/TypeTools.hpp
+110 −96 include/CLI/impl/App_inl.hpp
+28 −22 include/CLI/impl/Argv_inl.hpp
+10 −16 include/CLI/impl/Config_inl.hpp
+19 −8 include/CLI/impl/Option_inl.hpp
+2 −0 include/CLI/impl/Split_inl.hpp
+18 −8 include/CLI/impl/StringTools_inl.hpp
+1 −1 include/CLI/impl/Validators_inl.hpp
+5 −1 src/CMakeLists.txt
+192 −2 tests/AppTest.cpp
+80 −3 tests/CMakeLists.txt
+188 −0 tests/ConfigFileTest.cpp
+27 −4 tests/FuzzFailTest.cpp
+34 −0 tests/HelpTest.cpp
+37 −2 tests/HelpersTest.cpp
+1 −1 tests/NewParseTest.cpp
+27 −0 tests/SubcommandTest.cpp
+35 −0 tests/applications/ensure_utf8.cpp
+36 −0 tests/applications/ensure_utf8_twice.cpp
+19 −0 tests/find_package_tests/CMakeLists.txt
+ tests/fuzzFail/fuzz_app_fail3
+1 −0 tests/fuzzFail/fuzz_file_fail1
+3 −1 tests/meson.build
+21 −0 tests/package_config_tests/CMakeLists.txt

0 comments on commit ad2b79c

Please sign in to comment.