From 1c3c41f84ac553474d8e319b747c37c721e38f39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Prost=20Fr=C3=A9d=C3=A9ric?= Date: Sat, 23 Nov 2019 15:42:58 +0100 Subject: [PATCH] add namespace internal --- source/utf8/cpp11_facilities.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/source/utf8/cpp11_facilities.h b/source/utf8/cpp11_facilities.h index e4847a5..ccdd246 100644 --- a/source/utf8/cpp11_facilities.h +++ b/source/utf8/cpp11_facilities.h @@ -29,9 +29,12 @@ DEALINGS IN THE SOFTWARE. namespace utf8 { - template + namespace internal { + template using Iterator_category = typename std::iterator_traits::iterator_category; - + template + using Decay = typename std::decay::type;//std::decay_t in c++14 + } // namespace internal } // namespace utf8 #endif // header guard