cppcheck: make operator const

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2020-11-01 20:49:51 -08:00
parent 761d672bd7
commit d4dc1416da

View File

@ -562,7 +562,7 @@ namespace cxxopts
{
template <typename U>
void
operator()(bool, U, const std::string&) {}
operator()(bool, U, const std::string&) const {}
};
template <typename T, typename U>