From 0333b277a5a4fd036c754e2dd03422a0f6d3e43c 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 df1fe50..5910596 100644 --- a/include/tclap/ArgTraits.h +++ b/include/tclap/ArgTraits.h @@ -115,6 +115,7 @@ public: typedef typename DefaultArgTrait::ValueCategory ValueCategory; }; +} // namespace + #endif -} // namespace