Skip to content

Commit 8979f95

Browse files
committed
private naming
1 parent 89760b1 commit 8979f95

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/boost/multi/array_ref.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1542,8 +1542,8 @@ class const_subarray : public array_types<T, D, ElementPtr, Layout> {
15421542
BOOST_MULTI_HD constexpr auto sliced(index first, index last) const& -> const_subarray { return sliced_aux_(first, last); }
15431543

15441544
private:
1545-
constexpr auto blocked(index first, index last) const& { return sliced(first, last).reindexed(first).as_const(); }
1546-
constexpr auto blocked(index first, index last) & { return sliced(first, last).reindexed(first).as_const(); }
1545+
constexpr auto blocked(index first, index last) const& { return sliced(first, last).reindexed(first).as_const(); } // NOLINT(readability-identifier-naming) TODO(correaa) remove or make private
1546+
constexpr auto blocked(index first, index last) & { return sliced(first, last).reindexed(first).as_const(); } // NOLINT(readability-identifier-naming) TODO(correaa) remove or make private
15471547

15481548
using iextension = typename const_subarray::index_extension;
15491549

0 commit comments

Comments
 (0)