Skip to content

Commit

Permalink
use literal one for msvc
Browse files Browse the repository at this point in the history
  • Loading branch information
alfC committed Oct 10, 2024
1 parent cddc943 commit 1a668ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/boost/multi/array_ref.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2552,8 +2552,8 @@ class const_subarray<T, 0, ElementPtr, Layout>
};

template<typename T, typename ElementPtr, class Layout>
struct const_subarray<T, ::boost::multi::dimensionality_type{1}, ElementPtr, Layout> // NOLINT(fuchsia-multiple-inheritance) : to define operators via CRTP
: multi::random_iterable<subarray<T, ::boost::multi::dimensionality_type{1}, ElementPtr, Layout> > // paren for msvc 19.14?
struct const_subarray<T, 1, ElementPtr, Layout> // NOLINT(fuchsia-multiple-inheritance) : to define operators via CRTP
: multi::random_iterable<subarray<T, 1, ElementPtr, Layout> > // paren for msvc 19.14?
, array_types<T, ::boost::multi::dimensionality_type{1}, ElementPtr, Layout> { // paren for msvc 19.14?
~const_subarray() = default; // lints(cppcoreguidelines-special-member-functions,hicpp-special-member-functions)

Expand Down

0 comments on commit 1a668ac

Please sign in to comment.