Skip to content

Commit

Permalink
fix: changing lib/clipp from muellan/clipp to GerHobbelt/clipp to get…
Browse files Browse the repository at this point in the history
… cpp20 compatibility
  • Loading branch information
SuperFola committed Jan 16, 2024
1 parent 04d0ce6 commit 70fde94
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
url = https://github.com/ArkScript-lang/modules.git
[submodule "lib/clipp"]
path = lib/clipp
url = https://github.com/muellan/clipp.git
url = https://github.com/GerHobbelt/clipp
[submodule "lib/picosha2"]
path = lib/picosha2
url = https://github.com/okdshin/PicoSHA2.git
Expand Down
3 changes: 2 additions & 1 deletion lib/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# ArkScript thirdparties

Includes
* [clipp](https://github.com/muellan/clipp), MIT License

* [clipp](https://github.com/GerHobbelt/clipp), MIT License
* [fmt](https://github.com/fmtlib/fmt), MIT License
* [picosha2](https://github.com/okdshin/PicoSHA2), MIT License
* [replxx](https://github.com/AmokHuginnsson/replxx/blob/master/LICENSE.md), MIT License + specifities
Expand Down
2 changes: 1 addition & 1 deletion lib/clipp
Submodule clipp updated 83 files
+76 −0 .gitattributes
+0 −6 .gitignore
+26 −14 CMakeLists.txt
+164 −163 README.md
+46 −0 examples/CMakeLists.txt
+9 −1 examples/actions.cpp
+10 −1 examples/align.cpp
+9 −1 examples/alternatives.cpp
+9 −1 examples/annotate.cpp
+9 −1 examples/argv0.cpp
+9 −1 examples/commands.cpp
+9 −1 examples/complex_nesting.cpp
+9 −1 examples/convert.cpp
+9 −1 examples/counter.cpp
+9 −1 examples/doc_filter.cpp
+10 −1 examples/documentation.cpp
+9 −1 examples/finder.cpp
+9 −1 examples/float_vector.cpp
+9 −1 examples/groups.cpp
+9 −1 examples/joinable_flags.cpp
+10 −2 examples/model.cpp
+48 −0 examples/monolithic_examples.h
+9 −2 examples/naval_fate.cpp
+10 −2 examples/nested_alternatives.cpp
+9 −1 examples/numbers.cpp
+9 −1 examples/options.cpp
+9 −1 examples/options_values.cpp
+10 −1 examples/parsing.cpp
+9 −1 examples/positional_values.cpp
+9 −2 examples/repeatable.cpp
+10 −1 examples/required_flags.cpp
+10 −1 examples/sanity.cpp
+9 −1 examples/send.cpp
+9 −1 examples/simplify.cpp
+9 −1 examples/switches.cpp
+9 −1 examples/tagnames.cpp
+12 −3 examples/text_formatting.cpp
+10 −1 examples/timing.cpp
+9 −1 examples/transform.cpp
+97 −31 include/clipp.h
+26 −23 test/CMakeLists.txt
+9 −1 test/actions_test.cpp
+28 −14 test/alternative_groups_test.cpp
+29 −15 test/alternative_options_test.cpp
+30 −16 test/alternative_required_test.cpp
+29 −15 test/blocking_test01.cpp
+30 −15 test/blocking_test02.cpp
+29 −15 test/blocking_test03.cpp
+28 −14 test/blocking_test04.cpp
+28 −14 test/blocking_test05.cpp
+28 −14 test/blocking_test06.cpp
+28 −14 test/blocking_test07.cpp
+28 −14 test/blocking_test08.cpp
+44 −22 test/blocking_test09.cpp
+37 −19 test/blocking_test10.cpp
+12 −4 test/documentation_test.cpp
+29 −15 test/empty_args.cpp
+10 −2 test/flag_param_factories_test.cpp
+22 −8 test/joined_flags_test1.cpp
+23 −8 test/joined_flags_test2.cpp
+26 −12 test/joined_flags_test3.cpp
+27 −12 test/joined_flags_test4.cpp
+23 −9 test/joined_flags_test5.cpp
+26 −12 test/joined_flags_test6.cpp
+31 −13 test/joined_params_test1.cpp
+9 −1 test/joined_params_test2.cpp
+30 −15 test/joined_sequence_test.cpp
+37 −23 test/mixed_params_test.cpp
+45 −0 test/monolithic_tests.h
+9 −1 test/nesting_test.cpp
+28 −14 test/options_test.cpp
+9 −1 test/prefix_free_test.cpp
+24 −10 test/prefix_test.cpp
+45 −31 test/repeatability_test.cpp
+40 −18 test/repeatable_alternatives_test.cpp
+59 −45 test/required_params_test1.cpp
+59 −45 test/required_params_test2.cpp
+19 −7 test/run_tests.py
+26 −22 test/testing.h
+10 −2 test/usage_lines_test.cpp
+10 −2 test/values_conversion_test.cpp
+40 −25 test/values_filter_test.cpp
+53 −34 test/values_sequencing_test.cpp

0 comments on commit 70fde94

Please sign in to comment.