Skip to content

Commit

Permalink
Merge pull request #1065 from fabratu/20230522_tlx_v060
Browse files Browse the repository at this point in the history
Update submodules: googletest, tlx
  • Loading branch information
fabratu committed May 31, 2023
2 parents 5fdc379 + da3d91f commit 4b86a74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extlibs/googletest
Submodule googletest updated 241 files
2 changes: 1 addition & 1 deletion extlibs/tlx
Submodule tlx updated 94 files
+101 −0 .github/workflows/cmake.yml
+1 −0 AUTHORS
+37 −19 CMakeLists.txt
+1 −1 README.md
+2 −2 misc/format/analyze-source.pl
+1,403 −546 misc/format/uncrustify.cfg
+14 −14 tests/algorithm/multiway_merge_benchmark.cpp
+1 −1 tests/algorithm/multiway_merge_test.cpp
+2 −1 tests/cmdline_parser_example.cpp
+7 −6 tests/container/btree_test.cpp
+5 −4 tests/container/d_ary_heap_speedtest.cpp
+66 −65 tests/container/d_ary_heap_test.cpp
+10 −10 tests/container/loser_tree_test.cpp
+40 −39 tests/container/radix_heap_test.cpp
+2 −2 tests/container/ring_buffer_test.cpp
+6 −1 tests/container/simple_vector_test.cpp
+1 −1 tests/container/string_view_test.cpp
+2 −1 tests/deprecated_test.cpp
+33 −32 tests/math_test.cpp
+3 −3 tests/siphash_test.cpp
+1 −1 tests/sort_networks_test.cpp
+1 −1 tests/sort_parallel_mergesort_test.cpp
+4 −3 tests/sort_strings_example.cpp
+4 −4 tests/sort_strings_parallel_test.cpp
+5 −4 tests/sort_strings_test.cpp
+24 −23 tests/sort_strings_test.hpp
+93 −19 tests/string_test.cpp
+2 −1 tests/thread_barrier_test.cpp
+1 −0 tlx/CMakeLists.txt
+25 −25 tlx/algorithm/multiway_merge.hpp
+3 −3 tlx/algorithm/random_bipartition_shuffle.hpp
+17 −14 tlx/allocator_base.hpp
+13 −4 tlx/backtrace.cpp
+18 −17 tlx/cmdline_parser.cpp
+11 −10 tlx/cmdline_parser.hpp
+7 −7 tlx/container/btree.hpp
+9 −8 tlx/container/loser_tree.hpp
+4 −4 tlx/container/lru_cache.hpp
+7 −5 tlx/container/radix_heap.hpp
+6 −6 tlx/container/ring_buffer.hpp
+28 −2 tlx/container/simple_vector.hpp
+1 −1 tlx/container/splay_tree.hpp
+526 −83 tlx/container/string_view.hpp
+1 −0 tlx/define.hpp
+31 −0 tlx/define/constexpr.hpp
+1 −1 tlx/define/deprecated.hpp
+15 −13 tlx/delegate.hpp
+24 −18 tlx/die/core.hpp
+37 −36 tlx/digest/md5.cpp
+8 −8 tlx/digest/md5.hpp
+26 −25 tlx/digest/sha1.cpp
+8 −8 tlx/digest/sha1.hpp
+15 −14 tlx/digest/sha256.cpp
+8 −8 tlx/digest/sha256.hpp
+31 −30 tlx/digest/sha512.cpp
+8 −8 tlx/digest/sha512.hpp
+1 −1 tlx/logger/core.hpp
+5 −5 tlx/main.dox
+12 −12 tlx/math/bswap.hpp
+7 −6 tlx/math/bswap_be.hpp
+7 −6 tlx/math/bswap_le.hpp
+21 −19 tlx/math/integer_log2.hpp
+14 −14 tlx/math/popcount.hpp
+14 −14 tlx/math/rol.hpp
+14 −14 tlx/math/ror.hpp
+1 −0 tlx/meta/is_std_array.hpp
+2 −2 tlx/meta/log2.hpp
+2 −1 tlx/meta/vexpand.hpp
+4 −5 tlx/multi_timer.cpp
+2 −1 tlx/multi_timer.hpp
+37 −37 tlx/siphash.hpp
+1 −1 tlx/sort/parallel_mergesort.hpp
+13 −13 tlx/sort/strings.hpp
+12 −11 tlx/sort/strings/parallel_sample_sort.hpp
+32 −31 tlx/sort/strings/radix_sort.hpp
+8 −7 tlx/sort/strings/sample_sort_tools.hpp
+31 −31 tlx/sort/strings/string_set.hpp
+13 −13 tlx/sort/strings_parallel.hpp
+2 −2 tlx/stack_allocator.hpp
+2 −0 tlx/string.hpp
+19 −18 tlx/string/base64.cpp
+2 −1 tlx/string/format_iec_units.hpp
+5 −4 tlx/string/format_si_iec_units.cpp
+2 −1 tlx/string/format_si_units.hpp
+8 −7 tlx/string/hash_djb2.hpp
+8 −7 tlx/string/hash_sdbm.hpp
+4 −3 tlx/string/hexdump.cpp
+3 −3 tlx/string/hexdump.hpp
+3 −2 tlx/string/parse_si_iec_units.cpp
+3 −2 tlx/string/parse_si_iec_units.hpp
+76 −0 tlx/string/parse_uri.hpp
+141 −0 tlx/string/parse_uri_form_data.hpp
+2 −1 tlx/unused.hpp
+9 −6 tlx/version.hpp

0 comments on commit 4b86a74

Please sign in to comment.