-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: use boost 1.80 Signed-off-by: Henry Schreiner <[email protected]> * chore: drop workaround for bug in boost-histogram <1.80 Signed-off-by: Henry Schreiner <[email protected]> * chore: remove numpy axis Signed-off-by: Henry Schreiner <[email protected]> * WIP: use native axis for numpy Signed-off-by: Henry Schreiner <[email protected]> * fix: restore regular_numpy, without a way to create it Signed-off-by: Henry Schreiner <[email protected]> style: pre-commit fixes --------- Signed-off-by: Henry Schreiner <[email protected]>
- Loading branch information
Showing
14 changed files
with
17 additions
and
32 deletions.
There are no files selected for viewing
Submodule assert
updated
20 files
+363 −0 | .drone.jsonnet | |
+23 −0 | .drone/drone.bat | |
+24 −0 | .drone/drone.sh | |
+258 −31 | .github/workflows/ci.yml | |
+13 −4 | CMakeLists.txt | |
+32 −7 | appveyor.yml | |
+2 −2 | doc/assert.adoc | |
+9 −0 | doc/changes.adoc | |
+4 −3 | doc/current_function.adoc | |
+1 −1 | doc/index.adoc | |
+90 −18 | doc/source_location.adoc | |
+14 −0 | extra/boost_assert.natvis | |
+86 −15 | include/boost/assert/source_location.hpp | |
+3 −0 | test/Jamfile.v2 | |
+41 −5 | test/source_location_test.cpp | |
+4 −5 | test/source_location_test2.cpp | |
+39 −5 | test/source_location_test3.cpp | |
+44 −0 | test/source_location_test4.cpp | |
+44 −0 | test/source_location_test5.cpp | |
+23 −0 | test/source_location_test6.cpp |
Submodule mp11
updated
69 files
Submodule throw_exception
updated
23 files
+300 −0 | .drone.jsonnet | |
+23 −0 | .drone/drone.bat | |
+24 −0 | .drone/drone.sh | |
+420 −22 | .github/workflows/ci.yml | |
+4 −4 | appveyor.yml | |
+6 −1 | doc/changes.adoc | |
+12 −79 | doc/description.adoc | |
+218 −0 | doc/examples.adoc | |
+3 −0 | doc/index-docinfo-footer.html | |
+3 −2 | doc/index.adoc | |
+39 −0 | doc/reference.adoc | |
+76 −2 | include/boost/exception/exception.hpp | |
+103 −6 | include/boost/throw_exception.hpp | |
+27 −8 | test/Jamfile.v2 | |
+14 −0 | test/lib4_throw.cpp | |
+35 −0 | test/lib4_throw.hpp | |
+13 −6 | test/throw_exception_test4.cpp | |
+21 −0 | test/throw_from_library_test.cpp | |
+30 −0 | test/throw_with_location_nx_test.cpp | |
+22 −0 | test/throw_with_location_test.cpp | |
+64 −0 | test/throw_with_location_test2.cpp | |
+33 −0 | test/throw_with_location_test3.cpp | |
+41 −0 | test/throw_with_location_test4.cpp |
Submodule variant2
updated
25 files
+383 −0 | .drone.jsonnet | |
+24 −0 | .drone/drone.bat | |
+25 −0 | .drone/drone.sh | |
+278 −32 | .github/workflows/ci.yml | |
+9 −0 | CMakeLists.txt | |
+1 −1 | README.md | |
+36 −5 | appveyor.yml | |
+13 −1 | doc/variant2/changelog.adoc | |
+1 −1 | doc/variant2/implementation.adoc | |
+51 −20 | doc/variant2/reference.adoc | |
+32 −0 | extra/boost_variant2.natvis | |
+172 −18 | include/boost/variant2/variant.hpp | |
+8 −0 | test/Jamfile | |
+41 −0 | test/is_output_streamable.cpp | |
+34 −0 | test/variant_emplace_index.cpp | |
+2 −2 | test/variant_get_by_index_cx.cpp | |
+2 −2 | test/variant_get_by_type_cx.cpp | |
+3 −3 | test/variant_in_place_index_construct_cx.cpp | |
+2 −2 | test/variant_in_place_type_construct_cx.cpp | |
+41 −0 | test/variant_json_value_from.cpp | |
+42 −0 | test/variant_json_value_to.cpp | |
+13 −6 | test/variant_ostream_insert.cpp | |
+50 −0 | test/variant_uses_double_storage.cpp | |
+2 −2 | test/variant_value_construct_cx.cpp | |
+4 −4 | test/variant_visit_r.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters