C++ style to avoid compiler warning for non-NLS implementation of Messages::available

This commit is contained in:
Stephan Witt 2012-09-25 16:19:51 +02:00
parent 061924e275
commit e0787e839f

View File

@ -239,9 +239,8 @@ std::string Messages::language() const
return string();
}
bool Messages::available(string const & c)
bool Messages::available(string const & /* c */)
{
(void)c;
return false;
}