From d8388e5aef75c1271f2939f5d868dcf3337fd2ca Mon Sep 17 00:00:00 2001 From: Treb Connell Date: Thu, 24 Sep 2015 19:01:55 -0700 Subject: [PATCH] replace spaces with tabs --- include/array_view.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/array_view.h b/include/array_view.h index e4ffe5d..89a22f7 100644 --- a/include/array_view.h +++ b/include/array_view.h @@ -75,7 +75,7 @@ namespace details class coordinate_facade { static_assert(std::is_integral::value - && !std::is_signed::value + && !std::is_signed::value && sizeof(ValueType) <= sizeof(size_t), "ValueType must be unsigned integral type!"); static_assert(Rank > 0, "Rank must be greater than 0!"); @@ -1630,9 +1630,9 @@ namespace details template struct array_view_options { - static_assert(std::is_integral::value - && !std::is_signed::value - && sizeof(SizeType) <= sizeof(size_t), "size_type must be unsigned integral type!"); + static_assert(std::is_integral::value + && !std::is_signed::value + && sizeof(ValueType) <= sizeof(size_t), "ValueType must be unsigned integral type!"); struct array_view_traits {