From d232670470ad9686e0b343fb65b5dd5cd6316d66 Mon Sep 17 00:00:00 2001 From: Anna Gringauze Date: Wed, 14 Oct 2015 10:46:22 -0700 Subject: [PATCH] gcc fixes --- include/array_view.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/array_view.h b/include/array_view.h index 98bbadf..ff815fc 100644 --- a/include/array_view.h +++ b/include/array_view.h @@ -826,11 +826,11 @@ class strided_bounds public: static const size_t rank = Rank; - using reference = typename SizeType&; - using const_reference = typename const SizeType&; - using size_type = typename SizeType; - using difference_type = typename SizeType; - using value_type = typename SizeType; + using reference = SizeType&; + using const_reference = const SizeType&; + using size_type = SizeType; + using difference_type = SizeType; + using value_type = SizeType; using index_type = index; using iterator = bounds_iterator; using const_iterator = bounds_iterator;