From 8fdea39e30f04dda7bd48d1abc99b10a628c00fb Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Thu, 2 Mar 2017 19:30:43 +0000 Subject: [PATCH] Added 'typename' --- src/iterator.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/iterator.h b/src/iterator.h index b6d04c6e..e451c62b 100644 --- a/src/iterator.h +++ b/src/iterator.h @@ -43,31 +43,31 @@ namespace etl template struct is_input_iterator { - static const bool value = etl::is_same::iterator_category, std::input_iterator_tag>::value; + static const bool value = etl::is_same::iterator_category, std::input_iterator_tag>::value; }; template struct is_output_iterator { - static const bool value = etl::is_same::iterator_category, std::output_iterator_tag>::value; + static const bool value = etl::is_same::iterator_category, std::output_iterator_tag>::value; }; template struct is_forward_iterator { - static const bool value = etl::is_same::iterator_category, std::forward_iterator_tag>::value; + static const bool value = etl::is_same::iterator_category, std::forward_iterator_tag>::value; }; template struct is_bidirectional_iterator { - static const bool value = etl::is_same::iterator_category, std::bidirectional_iterator_tag>::value; + static const bool value = etl::is_same::iterator_category, std::bidirectional_iterator_tag>::value; }; template struct is_random_iterator { - static const bool value = etl::is_same::iterator_category, std::random_access_iterator_tag>::value; + static const bool value = etl::is_same::iterator_category, std::random_access_iterator_tag>::value; }; template