mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
gcc fixes
This commit is contained in:
parent
546f8cc130
commit
e63dcbc41d
@ -826,11 +826,11 @@ class strided_bounds
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
static const size_t rank = Rank;
|
static const size_t rank = Rank;
|
||||||
using reference = typename SizeType&;
|
using reference = SizeType&;
|
||||||
using const_reference = typename const SizeType&;
|
using const_reference = const SizeType&;
|
||||||
using size_type = typename SizeType;
|
using size_type = SizeType;
|
||||||
using difference_type = typename SizeType;
|
using difference_type = SizeType;
|
||||||
using value_type = typename SizeType;
|
using value_type = SizeType;
|
||||||
using index_type = index<rank, size_type>;
|
using index_type = index<rank, size_type>;
|
||||||
using iterator = bounds_iterator<index_type>;
|
using iterator = bounds_iterator<index_type>;
|
||||||
using const_iterator = bounds_iterator<index_type>;
|
using const_iterator = bounds_iterator<index_type>;
|
||||||
|
Loading…
Reference in New Issue
Block a user