Skip to content

Commit

Permalink
Merge branch 'remove-explicit-dim-type-for-msvc' into 'master'
Browse files Browse the repository at this point in the history
fixes

See merge request correaa/boost-multi!1308
  • Loading branch information
correaa committed Dec 27, 2024
2 parents ef3466c + 411f7f4 commit 54b9100
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions include/boost/multi/adaptors/blas/numeric.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
// #include <boost/multi/adaptors/complex.hpp>

#include <complex> // for complex
#include <cstddef> // for nullptr_t
#include <functional> // for negate
#include <iterator> // for iterator...
#include <memory> // for pointer_...
Expand Down
2 changes: 1 addition & 1 deletion include/boost/multi/array_ref.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2544,7 +2544,7 @@ class const_subarray<T, 0, ElementPtr, Layout>
template<typename T, typename ElementPtr, class Layout>
struct const_subarray<T, 1, ElementPtr, Layout> // NOLINT(fuchsia-multiple-inheritance) to define operators via CRTP
: multi::random_iterable<const_subarray<T, 1, ElementPtr, Layout> >
, array_types<T, ::boost::multi::dimensionality_type{1}, ElementPtr, Layout> {
, array_types<T, 1, ElementPtr, Layout> {
~const_subarray() = default; // lints(cppcoreguidelines-special-member-functions,hicpp-special-member-functions)

// boost serialization needs `delete`. void boost::serialization::extended_type_info_typeid<T>::destroy(const void*) const [with T = boost::multi::subarray<double, 1, double*, boost::multi::layout_t<1> >]
Expand Down

0 comments on commit 54b9100

Please sign in to comment.