Remove trailing semicolons on namespace decls: required to build with -pedantic compiler flag (#45)

This commit is contained in:
Adam Kewley 2019-08-28 17:52:11 +01:00 committed by Arun Muralidharan
parent 6931e3d69f
commit a5cc965f72

View File

@ -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