Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
davidstone committed Jan 27, 2024
1 parent ae0d530 commit 199e951
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dependencies/Catch2
Submodule Catch2 updated 54 files
+1 −0 .bazelrc
+0 −1 .github/workflows/linux-meson-builds.yml
+1 −2 .github/workflows/linux-other-builds.yml
+1 −2 .github/workflows/linux-simple-builds.yml
+1 −0 CMake/CatchMiscFunctions.cmake
+2 −1 CMakeLists.txt
+237 −71 Doxyfile
+2 −1 MODULE.bazel
+3 −3 WORKSPACE.bazel
+20 −0 docs/release-notes.md
+41 −0 examples/232-Cfg-CustomMain.cpp
+2 −1 examples/CMakeLists.txt
+107 −94 extras/catch_amalgamated.cpp
+273 −220 extras/catch_amalgamated.hpp
+1 −1 meson.build
+6 −2 src/CMakeLists.txt
+3 −3 src/catch2/benchmark/detail/catch_estimate_clock.hpp
+2 −7 src/catch2/benchmark/detail/catch_stats.cpp
+1 −1 src/catch2/catch_config.hpp
+1 −0 src/catch2/catch_test_case_info.cpp
+2 −1 src/catch2/catch_test_case_info.hpp
+1 −1 src/catch2/catch_version.cpp
+1 −1 src/catch2/catch_version_macros.hpp
+0 −6 src/catch2/generators/catch_generators.hpp
+0 −1 src/catch2/generators/catch_generators_random.hpp
+0 −8 src/catch2/interfaces/catch_interfaces_reporter.cpp
+0 −1 src/catch2/interfaces/catch_interfaces_reporter.hpp
+0 −2 src/catch2/internal/catch_assertion_handler.cpp
+69 −53 src/catch2/internal/catch_clara.cpp
+91 −43 src/catch2/internal/catch_clara.hpp
+3 −2 src/catch2/internal/catch_commandline.cpp
+1 −0 src/catch2/internal/catch_fatal_condition_handler.cpp
+0 −3 src/catch2/internal/catch_fatal_condition_handler.hpp
+0 −5 src/catch2/internal/catch_istream.cpp
+0 −3 src/catch2/internal/catch_list.cpp
+1 −1 src/catch2/internal/catch_reporter_spec_parser.hpp
+0 −1 src/catch2/internal/catch_run_context.cpp
+1 −1 src/catch2/internal/catch_section.cpp
+1 −2 src/catch2/internal/catch_sharding.hpp
+3 −1 src/catch2/internal/catch_stringref.hpp
+0 −1 src/catch2/internal/catch_tag_alias_registry.cpp
+0 −4 src/catch2/internal/catch_test_case_registry_impl.cpp
+0 −2 src/catch2/internal/catch_test_case_registry_impl.hpp
+1 −1 src/catch2/internal/catch_test_macro_impl.hpp
+23 −10 src/catch2/internal/catch_textflow.cpp
+28 −8 src/catch2/internal/catch_textflow.hpp
+0 −1 src/catch2/internal/catch_uncaught_exceptions.cpp
+10 −12 src/catch2/internal/catch_uniform_integer_distribution.hpp
+12 −0 src/catch2/meson.build
+9 −9 src/catch2/reporters/catch_reporter_console.cpp
+0 −2 src/catch2/reporters/catch_reporter_junit.hpp
+0 −2 src/catch2/reporters/catch_reporter_sonarqube.hpp
+0 −1 src/catch2/reporters/catch_reporter_tap.hpp
+6 −0 tests/SelfTest/IntrospectiveTests/FloatingPoint.tests.cpp
2 changes: 1 addition & 1 deletion dependencies/bounded
Submodule bounded updated 69 files
+18 −1 CMakeLists.txt
+1 −1 dependencies/Catch2
+1 −1 dependencies/benchmark
+1 −1 dependencies/cmake_strict_defaults
+1 −1 dependencies/numeric-traits
+1 −1 dependencies/operators
+1 −1 dependencies/std_module
+3 −0 source/bounded/lazy_init.cpp
+1 −1 source/bounded/test_int.cpp
+9 −8 source/containers/adapt.cpp
+7 −3 source/containers/adapt_iterator.cpp
+186 −0 source/containers/algorithms/adjacent.cpp
+19 −6 source/containers/algorithms/all_any_none.cpp
+127 −0 source/containers/algorithms/chunk_by.cpp
+1 −1 source/containers/algorithms/concatenate_view.cpp
+2 −0 source/containers/algorithms/filter.cpp
+1 −1 source/containers/algorithms/generate.cpp
+117 −22 source/containers/algorithms/join.cpp
+122 −24 source/containers/algorithms/remove_none.cpp
+1 −1 source/containers/algorithms/sort/common_prefix.cpp
+1 −1 source/containers/algorithms/sort/double_buffered_ska_sort.cpp
+1 −1 source/containers/algorithms/sort/inplace_radix_sort.cpp
+102 −21 source/containers/algorithms/transform.cpp
+2 −10 source/containers/back.cpp
+6 −1 source/containers/containers.cpp
+2 −2 source/containers/default_begin_end_size.cpp
+6 −4 source/containers/dynamic_array.cpp
+31 −0 source/containers/front.cpp
+1 −1 source/containers/initializer_range.cpp
+14 −0 source/containers/iterator_category_base.cpp
+33 −0 source/containers/iterator_to_sentinel.cpp
+1 −1 source/containers/lazy_push_back.cpp
+1 −1 source/containers/lazy_push_front.cpp
+1 −1 source/containers/pop_back.cpp
+1 −1 source/containers/push_back.cpp
+1 −1 source/containers/push_back_into_capacity.cpp
+1 −1 source/containers/push_front.cpp
+5 −1 source/containers/range.cpp
+1 −0 source/containers/reference_or_value.cpp
+2 −1 source/containers/std/list.cpp
+2 −1 source/containers/std/vector.cpp
+2 −2 source/containers/stored_function.cpp
+11 −0 source/containers/take.cpp
+1 −3 source/containers/vector.cpp
+38 −0 source/containers/wrap_range.cpp
+37 −0 source/tv/apply.cpp
+0 −1 source/tv/indexed_value.cpp
+9 −261 source/tv/optional.cpp
+46 −0 source/tv/transform.cpp
+0 −330 source/tv/tuple.cpp
+73 −0 source/tv/tuple_cat.cpp
+40 −0 source/tv/tuple_size.cpp
+5 −0 source/tv/tv.cpp
+12 −0 source/tv/variant.cpp
+12 −0 source/tv/variant_index.cpp
+41 −0 test/containers/algorithms/adjacent.cpp
+49 −0 test/containers/algorithms/chunk_by.cpp
+0 −1 test/containers/algorithms/split.cpp
+2 −1 test/containers/bidirectional_linked_list.cpp
+1 −1 test/containers/forward_linked_list.cpp
+1 −1 test/containers/lazy_push_back_into_capacity.cpp
+1 −1 test/containers/push_back_into_capacity.cpp
+1 −1 test/containers/sort/sort_test_data.cpp
+25 −0 test/containers/wrap_range.cpp
+280 −0 test/tv/optional.cpp
+43 −0 test/tv/transform.cpp
+219 −0 test/tv/tuple.cpp
+30 −0 test/tv/tuple_cat.cpp
+33 −0 test/tv/tuple_size.cpp
2 changes: 1 addition & 1 deletion dependencies/cmake_strict_defaults
2 changes: 1 addition & 1 deletion dependencies/numeric-traits
2 changes: 1 addition & 1 deletion dependencies/operators
2 changes: 1 addition & 1 deletion dependencies/std_module

0 comments on commit 199e951

Please sign in to comment.