Skip to content

Commit

Permalink
Update xtl and xtensor submodules (#2941)
Browse files Browse the repository at this point in the history
  • Loading branch information
HunterBelanger committed Apr 8, 2024
1 parent 463299d commit 70ba23a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vendor/xtensor
Submodule xtensor updated 386 files
2 changes: 1 addition & 1 deletion vendor/xtl
Submodule xtl updated 80 files
+0 −32 .appveyor.yml
+0 −0 .azure-pipelines/.azure-pipelines-linux.yml
+0 −0 .azure-pipelines/.azure-pipelines-osx.yml
+0 −0 .azure-pipelines/.azure-pipelines-win.yml
+0 −42 .azure-pipelines/azure-pipelines-linux.yml
+0 −28 .azure-pipelines/azure-pipelines-osx.yml
+0 −84 .azure-pipelines/azure-pipelines-win.yml
+0 −27 .azure-pipelines/unix-build.yml
+3 −5 .github/PULL_REQUEST_TEMPLATE.md
+11 −0 .github/toolchains/clang.cmake
+9 −0 .github/toolchains/gcc.cmake
+91 −0 .github/workflows/linux.yml
+46 −0 .github/workflows/osx.yml
+52 −0 .github/workflows/windows.yml
+0 −92 .travis.yml
+22 −12 CMakeLists.txt
+5 −15 README.md
+0 −7 azure-pipelines.yml
+2 −1 docs/environment.yml
+115 −0 docs/source/basic_types.rst
+109 −0 docs/source/changelog.rst
+4 −3 docs/source/conf.py
+39 −0 docs/source/containers.rst
+25 −0 docs/source/design_patterns.rst
+19 −0 docs/source/index.rst
+4 −4 docs/source/installation.rst
+24 −0 docs/source/meta_programming.rst
+32 −0 docs/source/miscellaneous.rst
+2 −0 environment-dev.yml
+13 −0 include/xtl/xany.hpp
+69 −3 include/xtl/xbasic_fixed_string.hpp
+6 −6 include/xtl/xclosure.hpp
+179 −0 include/xtl/xcompare.hpp
+1 −1 include/xtl/xcomplex.hpp
+9 −8 include/xtl/xdynamic_bitset.hpp
+41 −0 include/xtl/xhalf_float.hpp
+4,036 −0 include/xtl/xhalf_float_impl.hpp
+77 −0 include/xtl/xiterator_base.hpp
+14 −1 include/xtl/xjson.hpp
+91 −1 include/xtl/xmeta_utils.hpp
+422 −0 include/xtl/xmultimethods.hpp
+2 −2 include/xtl/xoptional_meta.hpp
+42 −0 include/xtl/xplatform.hpp
+12 −2 include/xtl/xsequence.hpp
+6 −5 include/xtl/xspan_impl.hpp
+125 −0 include/xtl/xsystem.hpp
+12 −2 include/xtl/xtl_config.hpp
+53 −13 include/xtl/xtype_traits.hpp
+13 −10 include/xtl/xvariant_impl.hpp
+195 −0 include/xtl/xvisitor.hpp
+8 −1 readthedocs.yml
+30 −56 test/CMakeLists.txt
+0 −24 test/copyGTest.cmake.in
+0 −25 test/downloadGTest.cmake.in
+6 −0 test/main.cpp
+70 −0 test/test_common_macros.hpp
+1 −1 test/test_xbase64.cpp
+8 −1 test/test_xbasic_fixed_string.cpp
+1 −1 test/test_xclosure.cpp
+41 −0 test/test_xcompare.cpp
+110 −107 test/test_xcomplex.cpp
+1 −1 test/test_xcomplex_sequence.cpp
+1 −8 test/test_xdynamic_bitset.cpp
+1 −1 test/test_xfunctional.cpp
+46 −0 test/test_xhalf_float.cpp
+13 −6 test/test_xhash.cpp
+1 −1 test/test_xhierarchy_generator.cpp
+29 −7 test/test_xiterator_base.cpp
+1 −1 test/test_xmasked_value.cpp
+34 −16 test/test_xmeta_utils.cpp
+319 −0 test/test_xmultimethods.cpp
+1 −1 test/test_xoptional.cpp
+28 −0 test/test_xplatform.cpp
+1 −1 test/test_xproxy_wrapper.cpp
+13 −2 test/test_xsequence.cpp
+31 −0 test/test_xsystem.cpp
+9 −8 test/test_xtype_traits.cpp
+23 −1 test/test_xvariant.cpp
+236 −0 test/test_xvisitor.cpp
+0 −1 xtl.pc.in

0 comments on commit 70ba23a

Please sign in to comment.