Remove redundant using namespace Fallback

C++ has ADL to find overloads. using namespace does nothing in this
case.
This commit is contained in:
elsid 2025-04-18 12:26:23 +02:00
parent 87d77a6882
commit 0d5e9ef85f
No known key found for this signature in database
GPG key ID: B845CB9FEE18AB40
5 changed files with 8 additions and 14 deletions

View file

@ -24,8 +24,6 @@ namespace Fallback
};
// Parses and validates a fallback map from boost program_options.
// Note: for boost to pick up the validate function, you need to pull in the namespace e.g.
// by using namespace Fallback;
void validate(boost::any& v, std::vector<std::string> const& tokens, FallbackMap*, int);
}