From d21f6c6911802b454905c5751f265c41f99fc339 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Mon, 20 Feb 2017 18:09:23 +1100 Subject: [PATCH] tap: temporarily remove c++17 nested namespaces This improves analysis under CLion 2016.x --- tap.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tap.hpp b/tap.hpp index b6f43032..613468bf 100644 --- a/tap.hpp +++ b/tap.hpp @@ -19,7 +19,7 @@ #include -namespace util::TAP { +namespace util { namespace TAP { /// A simple TAP (Test Anything Protocol) test case output class logger { public: @@ -84,7 +84,7 @@ namespace util::TAP { int m_status; size_t m_size; }; -} +} } #include "tap.ipp"