Skip to content

Commit

Permalink
Bump HighFive to v2.4.0 (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Cornu authored Apr 6, 2022
1 parent 52eabce commit 663a21b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extlib/HighFive
Submodule HighFive updated 94 files
+41 −43 .clang-format
+2 −0 .git-blame-ignore-revs
+3 −8 .github/build.sh
+49 −0 .github/workflows/check_doxygen_awesome_version.yml
+79 −26 .github/workflows/ci.yml
+35 −0 .github/workflows/clang_format.yml
+17 −14 .github/workflows/gh-pages.yml
+3 −3 .gitmodules
+48 −0 AUTHORS.txt
+15 −0 CHANGELOG.md
+5 −2 CMake/HighFiveTargetDeps.cmake
+22 −15 CMakeLists.txt
+12 −6 README.md
+1 −0 deps/catch2
+0 −1 deps/hpc-coding-conventions
+3 −3 doc/Doxyfile
+241 −0 doc/DoxygenLayout.xml
+2,135 −0 doc/doxygen-awesome-css/doxygen-awesome.css
+47 −0 doc/doxygen-awesome-css/update_doxygen_awesome.sh
+6 −1 doc/environment.yaml
+4 −5 include/highfive/H5Attribute.hpp
+9 −9 include/highfive/H5DataSet.hpp
+10 −23 include/highfive/H5DataSpace.hpp
+43 −22 include/highfive/H5DataType.hpp
+12 −20 include/highfive/H5Easy.hpp
+46 −26 include/highfive/H5Exception.hpp
+13 −8 include/highfive/H5File.hpp
+6 −5 include/highfive/H5FileDriver.hpp
+25 −7 include/highfive/H5Group.hpp
+7 −6 include/highfive/H5Object.hpp
+130 −37 include/highfive/H5PropertyList.hpp
+1 −2 include/highfive/H5Reference.hpp
+5 −6 include/highfive/H5Selection.hpp
+7 −7 include/highfive/H5Utility.hpp
+5 −7 include/highfive/bits/H5Annotate_traits.hpp
+31 −35 include/highfive/bits/H5Annotate_traits_misc.hpp
+17 −22 include/highfive/bits/H5Attribute_misc.hpp
+19 −23 include/highfive/bits/H5ConverterEigen_misc.hpp
+45 −64 include/highfive/bits/H5Converter_misc.hpp
+8 −16 include/highfive/bits/H5DataSet_misc.hpp
+95 −99 include/highfive/bits/H5DataType_misc.hpp
+25 −27 include/highfive/bits/H5Dataspace_misc.hpp
+6 −11 include/highfive/bits/H5Exception_misc.hpp
+6 −35 include/highfive/bits/H5FileDriver_misc.hpp
+33 −12 include/highfive/bits/H5File_misc.hpp
+11 −9 include/highfive/bits/H5Iterables_misc.hpp
+34 −29 include/highfive/bits/H5Node_traits.hpp
+125 −99 include/highfive/bits/H5Node_traits_misc.hpp
+24 −23 include/highfive/bits/H5Object_misc.hpp
+3 −5 include/highfive/bits/H5Path_traits.hpp
+5 −7 include/highfive/bits/H5Path_traits_misc.hpp
+17 −22 include/highfive/bits/H5PropertyList_misc.hpp
+38 −34 include/highfive/bits/H5ReadWrite_misc.hpp
+4 −5 include/highfive/bits/H5Reference_misc.hpp
+3 −2 include/highfive/bits/H5Selection_misc.hpp
+235 −1 include/highfive/bits/H5Slice_traits.hpp
+70 −49 include/highfive/bits/H5Slice_traits_misc.hpp
+27 −23 include/highfive/bits/H5Utils.hpp
+1 −2 include/highfive/bits/H5_definitions.hpp
+17 −21 include/highfive/h5easy_bits/H5Easy_Eigen.hpp
+19 −21 include/highfive/h5easy_bits/H5Easy_misc.hpp
+6 −11 include/highfive/h5easy_bits/H5Easy_opencv.hpp
+17 −35 include/highfive/h5easy_bits/H5Easy_public.hpp
+4 −3 include/highfive/h5easy_bits/H5Easy_scalar.hpp
+11 −9 include/highfive/h5easy_bits/H5Easy_vector.hpp
+4 −3 include/highfive/h5easy_bits/H5Easy_xtensor.hpp
+6 −0 src/examples/CMakeLists.txt
+2 −5 src/examples/boost_multi_array_2D.cpp
+4 −5 src/examples/boost_ublas_double.cpp
+1 −3 src/examples/compound_types.cpp
+7 −10 src/examples/create_attribute_string_integer.cpp
+2 −3 src/examples/create_dataset_double.cpp
+7 −15 src/examples/create_datatype.cpp
+4 −5 src/examples/create_extensible_dataset.cpp
+1 −2 src/examples/easy_attribute.cpp
+8 −10 src/examples/easy_dumpoptions.cpp
+4 −5 src/examples/easy_load_dump.cpp
+50 −0 src/examples/eigen_matrix.cpp
+4 −5 src/examples/parallel_hdf5_write_dataset.cpp
+6 −7 src/examples/read_write_dataset_string.cpp
+1 −2 src/examples/read_write_fixedlen_string.cpp
+3 −5 src/examples/read_write_single_scalar.cpp
+2 −5 src/examples/read_write_vector_dataset.cpp
+3 −4 src/examples/read_write_vector_dataset_references.cpp
+5 −4 src/examples/renaming_objects.cpp
+16 −6 src/examples/select_by_id_dataset_cpp11.cpp
+6 −7 src/examples/select_partial_dataset_cpp11.cpp
+27 −17 tests/unit/CMakeLists.txt
+22 −26 tests/unit/tests_high_five.hpp
+792 −394 tests/unit/tests_high_five_base.cpp
+89 −114 tests/unit/tests_high_five_easy.cpp
+31 −35 tests/unit/tests_high_five_multi_dims.cpp
+46 −23 tests/unit/tests_high_five_parallel.cpp
+1 −2 tests/unit/tests_import_public_headers.cpp

0 comments on commit 663a21b

Please sign in to comment.