From f827c2be00718dcc1d50fcb96c911b76b1c526b3 Mon Sep 17 00:00:00 2001 From: Martchus Date: Mon, 8 May 2017 19:51:24 +0200 Subject: [PATCH] Add trait to check whether type is iteratable --- misc/traits.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/misc/traits.h b/misc/traits.h index b85d3b6..ee07725 100644 --- a/misc/traits.h +++ b/misc/traits.h @@ -1,6 +1,7 @@ #ifndef CPP_UTILITIES_TRAITS_H #define CPP_UTILITIES_TRAITS_H +#include #include /// \brief Contains traits for conveniently exploiting SFINAE. @@ -39,6 +40,28 @@ template class Template> struct IsSpecializa }; template