mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
Spaces to tabs in array_view.h
This commit is contained in:
parent
a1af25a1c4
commit
f35a4c88c1
@ -131,13 +131,13 @@ namespace details
|
|||||||
// Preconditions: component_idx < rank
|
// Preconditions: component_idx < rank
|
||||||
constexpr reference operator[](size_t component_idx)
|
constexpr reference operator[](size_t component_idx)
|
||||||
{
|
{
|
||||||
Expects(component_idx < rank);
|
Expects(component_idx < rank);
|
||||||
return elems[component_idx];
|
return elems[component_idx];
|
||||||
}
|
}
|
||||||
// Preconditions: component_idx < rank
|
// Preconditions: component_idx < rank
|
||||||
constexpr const_reference operator[](size_t component_idx) const
|
constexpr const_reference operator[](size_t component_idx) const
|
||||||
{
|
{
|
||||||
Expects(component_idx < rank);
|
Expects(component_idx < rank);
|
||||||
return elems[component_idx];
|
return elems[component_idx];
|
||||||
}
|
}
|
||||||
constexpr bool operator==(const ConcreteType& rhs) const noexcept
|
constexpr bool operator==(const ConcreteType& rhs) const noexcept
|
||||||
|
Loading…
Reference in New Issue
Block a user