1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-04-30 20:53:52 +00:00

Fix for GCC namespace warning

This commit is contained in:
Henry Fredrick Schreiner 2017-01-28 18:57:58 -05:00
parent 0c07c8ad9c
commit 15a2a94e4a

View File

@ -32,6 +32,9 @@ std::string join(const T& v, std::string delim = ",") {
return s.str();
}
}
namespace CLI {
struct Combiner {
int num;
@ -57,10 +60,6 @@ struct Combiner {
return *this | b;
}
};
}
namespace CLI {
struct Error : public std::runtime_error {
Error(std::string parent, std::string name) : runtime_error(parent + ": " + name) {}