Skip to content

Commit

Permalink
Fix the definition of size_type
Browse files Browse the repository at this point in the history
  • Loading branch information
akukanov committed Sep 3, 2024
1 parent 12df547 commit 99f8796
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Therefore, ``blocked_rangeNd<int,2>`` is a specialisation of ``blocked_range2d``
// Types
using value_type = Value;
using dim_range_type = blocked_range<value_type>;
using size_type = dim_range_type::size_type;
using size_type = typename dim_range_type::size_type;
// Constructors
blocked_rangeNd(const dim_range_type& dim0 /*, ... - exactly N parameters of the same type*/);
Expand Down Expand Up @@ -66,7 +66,7 @@ The type that represents one out of the N dimensions.

.. code:: cpp
using size_type = dim_range_type::size_type;
using size_type = typename dim_range_type::size_type;
The type for measuring the size of a dimension.

Expand Down

0 comments on commit 99f8796

Please sign in to comment.