Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update HighFive SHA to 2.9.0. #343

Merged
merged 1 commit into from
Jan 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion extlib/HighFive
Submodule HighFive updated 68 files
+23 −17 .github/ISSUE_TEMPLATE/bug_report.md
+44 −0 .github/ISSUE_TEMPLATE/build_failure.md
+0 −11 .github/ISSUE_TEMPLATE/feature_request.md
+1 −0 .github/build.sh
+70 −0 .github/create_submodule_update_pr.sh
+0 −25 .github/pull_request_template.md
+1 −30 .github/workflows/check_doxygen_awesome_version.yml
+19 −7 .github/workflows/ci.yml
+20 −0 CHANGELOG.md
+8 −1 CMake/HighFiveWarnings.cmake
+2 −1 CMakeLists.txt
+1 −1 README.md
+131 −0 doc/developer_guide.md
+197 −58 doc/doxygen-awesome-css/doxygen-awesome.css
+4 −1 doc/installation.md
+18 −0 include/highfive/H5DataSpace.hpp
+11 −14 include/highfive/H5DataType.hpp
+15 −0 include/highfive/H5PropertyList.hpp
+9 −6 include/highfive/H5Utility.hpp
+3 −3 include/highfive/H5Version.hpp
+19 −40 include/highfive/bits/H5Annotate_traits_misc.hpp
+11 −16 include/highfive/bits/H5Attribute_misc.hpp
+2 −2 include/highfive/bits/H5Converter_misc.hpp
+6 −15 include/highfive/bits/H5DataSet_misc.hpp
+34 −108 include/highfive/bits/H5DataType_misc.hpp
+18 −32 include/highfive/bits/H5Dataspace_misc.hpp
+11 −7 include/highfive/bits/H5Exception_misc.hpp
+9 −19 include/highfive/bits/H5File_misc.hpp
+27 −0 include/highfive/bits/H5Inspector_decl.hpp
+21 −249 include/highfive/bits/H5Inspector_misc.hpp
+1 −2 include/highfive/bits/H5Node_traits.hpp
+87 −139 include/highfive/bits/H5Node_traits_misc.hpp
+14 −14 include/highfive/bits/H5Object_misc.hpp
+4 −8 include/highfive/bits/H5Path_traits_misc.hpp
+47 −120 include/highfive/bits/H5PropertyList_misc.hpp
+9 −3 include/highfive/bits/H5ReadWrite_misc.hpp
+8 −13 include/highfive/bits/H5Reference_misc.hpp
+8 −12 include/highfive/bits/H5Slice_traits.hpp
+22 −36 include/highfive/bits/H5Slice_traits_misc.hpp
+19 −0 include/highfive/bits/h5_wrapper.hpp
+131 −0 include/highfive/bits/h5a_wrapper.hpp
+125 −0 include/highfive/bits/h5d_wrapper.hpp
+39 −0 include/highfive/bits/h5e_wrapper.hpp
+58 −0 include/highfive/bits/h5f_wrapper.hpp
+46 −0 include/highfive/bits/h5g_wrapper.hpp
+79 −0 include/highfive/bits/h5i_wrapper.hpp
+132 −0 include/highfive/bits/h5l_wrapper.hpp
+19 −0 include/highfive/bits/h5o_wrapper.hpp
+376 −0 include/highfive/bits/h5p_wrapper.hpp
+42 −0 include/highfive/bits/h5r_wrapper.hpp
+115 −0 include/highfive/bits/h5s_wrapper.hpp
+230 −0 include/highfive/bits/h5t_wrapper.hpp
+164 −0 include/highfive/boost.hpp
+93 −0 include/highfive/eigen.hpp
+21 −0 include/highfive/half_float.hpp
+0 −4 src/examples/create_dataset_half_float.cpp
+30 −24 tests/test_project_integration.sh
+1 −1 tests/unit/CMakeLists.txt
+70 −0 tests/unit/create_traits.hpp
+461 −0 tests/unit/data_generator.hpp
+108 −0 tests/unit/supported_types.hpp
+317 −36 tests/unit/test_all_types.cpp
+536 −0 tests/unit/test_high_five_selection.cpp
+0 −2 tests/unit/tests_high_five.hpp
+75 −869 tests/unit/tests_high_five_base.cpp
+410 −0 tests/unit/tests_high_five_data_type.cpp
+1 −1 tests/unit/tests_high_five_multi_dims.cpp
+77 −0 tests/unit/tests_high_five_parallel.cpp
Loading