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:
parent
0c07c8ad9c
commit
15a2a94e4a
@ -32,6 +32,9 @@ std::string join(const T& v, std::string delim = ",") {
|
|||||||
return s.str();
|
return s.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
namespace CLI {
|
||||||
|
|
||||||
struct Combiner {
|
struct Combiner {
|
||||||
int num;
|
int num;
|
||||||
@ -57,10 +60,6 @@ struct Combiner {
|
|||||||
return *this | b;
|
return *this | b;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
namespace CLI {
|
|
||||||
|
|
||||||
struct Error : public std::runtime_error {
|
struct Error : public std::runtime_error {
|
||||||
Error(std::string parent, std::string name) : runtime_error(parent + ": " + name) {}
|
Error(std::string parent, std::string name) : runtime_error(parent + ": " + name) {}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user