From a5cc965f72e94bcc08d1ed18ec62d50b15caeafc Mon Sep 17 00:00:00 2001 From: Adam Kewley Date: Wed, 28 Aug 2019 17:52:11 +0100 Subject: [PATCH] Remove trailing semicolons on namespace decls: required to build with -pedantic compiler flag (#45) --- subprocess.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/subprocess.hpp b/subprocess.hpp index d5d491a..c3338f9 100755 --- a/subprocess.hpp +++ b/subprocess.hpp @@ -521,7 +521,7 @@ namespace util } #endif -}; // end namespace util +} // end namespace util @@ -1068,7 +1068,7 @@ private: Communication comm_; }; -}; // end namespace detail +} // end namespace detail @@ -1845,7 +1845,7 @@ namespace detail { return std::make_pair(std::move(obuf), std::move(ebuf)); } -}; // end namespace detail +} // end namespace detail @@ -1954,6 +1954,6 @@ OutBuffer pipeline(Args&&... args) return (pcmds.back().communicate().first); } -}; +} #endif // SUBPROCESS_HPP