Skip to content

Commit

Permalink
Merge pull request #183 from nelsontodd/update-submodule
Browse files Browse the repository at this point in the history
Point external/range-v3 submodule to relevant extant commit
  • Loading branch information
hkalodner authored Oct 18, 2018
2 parents 8d20702 + 73acc51 commit 53be6cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/range-v3
Submodule range-v3 updated 93 files
+57 −84 .travis.yml
+11 −5 .vscode/c_cpp_properties.json
+27 −32 CMakeLists.txt
+24 −3 README.md
+1 −1 Version.cmake
+31 −15 appveyor.yml
+9 −6 cmake/ranges_env.cmake
+14 −8 cmake/ranges_flags.cmake
+23 −2 cmake/ranges_options.cmake
+17 −3 conanfile.py
+1 −1 example/CMakeLists.txt
+2 −2 example/comprehensions.cpp
+55 −22 include/meta/meta.hpp
+52 −10 include/meta/meta_fwd.hpp
+2 −2 include/range/v3/algorithm/equal.hpp
+5 −5 include/range/v3/algorithm/inplace_merge.hpp
+0 −1 include/range/v3/algorithm/stable_sort.hpp
+48 −8 include/range/v3/begin_end.hpp
+4 −1 include/range/v3/data.hpp
+48 −0 include/range/v3/detail/adl_get.hpp
+81 −77 include/range/v3/detail/config.hpp
+4 −8 include/range/v3/detail/variant.hpp
+6 −6 include/range/v3/experimental/view/shared.hpp
+5 −8 include/range/v3/istream_range.hpp
+0 −1 include/range/v3/iterator_range.hpp
+3 −0 include/range/v3/range_access.hpp
+1 −1 include/range/v3/range_concepts.hpp
+5 −44 include/range/v3/range_fwd.hpp
+6 −6 include/range/v3/range_traits.hpp
+4 −3 include/range/v3/size.hpp
+10 −1 include/range/v3/utility/any.hpp
+14 −0 include/range/v3/utility/associated_types.hpp
+72 −55 include/range/v3/utility/basic_iterator.hpp
+31 −10 include/range/v3/utility/common_iterator.hpp
+72 −8 include/range/v3/utility/common_tuple.hpp
+0 −1 include/range/v3/utility/compressed_pair.hpp
+17 −19 include/range/v3/utility/concepts.hpp
+286 −212 include/range/v3/utility/counted_iterator.hpp
+7 −6 include/range/v3/utility/functional.hpp
+1 −2 include/range/v3/utility/invoke.hpp
+73 −54 include/range/v3/utility/iterator.hpp
+12 −35 include/range/v3/utility/iterator_concepts.hpp
+0 −3 include/range/v3/utility/iterator_traits.hpp
+13 −6 include/range/v3/utility/move.hpp
+0 −1 include/range/v3/utility/random.hpp
+0 −339 include/range/v3/utility/safe_int.hpp
+13 −12 include/range/v3/utility/swap.hpp
+137 −89 include/range/v3/utility/tagged_pair.hpp
+10 −9 include/range/v3/utility/tuple_algorithm.hpp
+2 −1 include/range/v3/utility/variant.hpp
+1 −1 include/range/v3/version.hpp
+2 −1 include/range/v3/view/all.hpp
+15 −12 include/range/v3/view/any_view.hpp
+50 −60 include/range/v3/view/cartesian_product.hpp
+11 −10 include/range/v3/view/chunk.hpp
+9 −8 include/range/v3/view/repeat.hpp
+8 −6 include/range/v3/view/repeat_n.hpp
+12 −13 include/range/v3/view/take.hpp
+2 −2 include/range/v3/view/zip_with.hpp
+4 −2 include/range/v3/view_facade.hpp
+11 −7 install_libcxx.sh
+30 −59 test/CMakeLists.txt
+19 −75 test/action/CMakeLists.txt
+11 −7 test/action/stable_sort.cpp
+107 −427 test/algorithm/CMakeLists.txt
+1 −1 test/algorithm/copy.cpp
+9 −9 test/algorithm/merge.cpp
+3 −3 test/algorithm/partition_copy.cpp
+8 −8 test/algorithm/set_symmetric_difference.hpp
+8 −8 test/algorithm/set_union.hpp
+4 −0 test/algorithm/stable_sort.cpp
+6 −6 test/algorithm/transform.cpp
+0 −1 test/array.hpp
+7 −7 test/bug474.cpp
+10 −9 test/bug566.cpp
+0 −26 test/constexpr_core.cpp
+1 −1 test/container_conversion.cpp
+1 −4 test/experimental/utility/CMakeLists.txt
+4 −1 test/experimental/utility/generator.cpp
+1 −3 test/experimental/view/CMakeLists.txt
+5 −19 test/numeric/CMakeLists.txt
+0 −8 test/span.cpp
+9 −3 test/test_utils.hpp
+11 −43 test/utility/CMakeLists.txt
+22 −7 test/utility/basic_iterator.cpp
+0 −2 test/utility/common_iterator.cpp
+17 −0 test/utility/iterator.cpp
+3 −6 test/utility/meta.cpp
+48 −191 test/view/CMakeLists.txt
+17 −0 test/view/any_view.cpp
+58 −3 test/view/cartesian_product.cpp
+38 −25 test/view/take.cpp
+3 −3 test/view/zip.cpp

0 comments on commit 53be6cc

Please sign in to comment.