Skip to content

Commit fde7939

Browse files
committed
remove free extent
1 parent 20d1495 commit fde7939

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
@@ -4524,8 +4524,8 @@ template<class T> constexpr auto cbegin(T&& rng) -> decltype(boost::multi::begin
45244524
/// returns an const-iterator to the end of the given range (including r-value subarrays, this is for compatible with idioms like `using std::cend; ...cend(A2D[1])...`)
45254525
template<class T> constexpr auto cend(T&& rng) -> decltype(boost::multi::end(static_cast<T const&>(std::forward<T>(rng)))) { return boost::multi::end(static_cast<T const&>(std::forward<T>(rng))); }
45264526

4527-
template<class T> constexpr auto extent(T const& rng) -> decltype(rng.extent()) { return rng.extent(); }
4528-
template<class T> [[deprecated("use extent")]] auto extension(T const& rng) -> decltype(rng.extent()) { return rng.extent(); }
4527+
// template<class T> constexpr auto extent(T const& rng) -> decltype(rng.extent()) { return rng.extent(); }
4528+
// template<class T> [[deprecated("use extent")]] auto extension(T const& rng) -> decltype(rng.extent()) { return rng.extent(); }
45294529

45304530
template<class T> constexpr auto stride(T const& rng) -> decltype(rng.stride()) { return rng.stride(); }
45314531

0 commit comments

Comments
 (0)