From 221a79bf1778d6657fa9d0dcfbc2fff8d5d318cb Mon Sep 17 00:00:00 2001 From: Daniel Aarno Date: Thu, 24 Aug 2017 21:44:33 +0100 Subject: [PATCH] Fix } outside of include guards You get an extra brace if ArgTraits.h ends up included more than once https://sourceforge.net/p/tclap/patches/13/ --- include/tclap/ArgTraits.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/tclap/ArgTraits.h b/include/tclap/ArgTraits.h index 0b2c18f..e894d75 100644 --- a/include/tclap/ArgTraits.h +++ b/include/tclap/ArgTraits.h @@ -82,6 +82,7 @@ struct ArgTraits { //typedef ValueLike ValueCategory; }; +} // namespace + #endif -} // namespace