From f35a4c88c14054c1fa18a4bc2989069064b34591 Mon Sep 17 00:00:00 2001 From: Treb Connell Date: Mon, 5 Oct 2015 14:20:59 -0700 Subject: [PATCH] Spaces to tabs in array_view.h --- include/array_view.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/array_view.h b/include/array_view.h index 613c9b2..da370e1 100644 --- a/include/array_view.h +++ b/include/array_view.h @@ -131,13 +131,13 @@ namespace details // Preconditions: component_idx < rank constexpr reference operator[](size_t component_idx) { - Expects(component_idx < rank); + Expects(component_idx < rank); return elems[component_idx]; } // Preconditions: component_idx < rank constexpr const_reference operator[](size_t component_idx) const { - Expects(component_idx < rank); + Expects(component_idx < rank); return elems[component_idx]; } constexpr bool operator==(const ConcreteType& rhs) const noexcept