]> git.lyx.org Git - features.git/commitdiff
C++ style to avoid compiler warning for non-NLS implementation of Messages::available
authorStephan Witt <switt@lyx.org>
Tue, 25 Sep 2012 14:19:51 +0000 (16:19 +0200)
committerStephan Witt <switt@lyx.org>
Tue, 25 Sep 2012 14:20:43 +0000 (16:20 +0200)
src/support/Messages.cpp

index 5eee6b7f6d5aa20d29b6d255c6b3adb208ce8cd3..ca5c110913151ed14d7185b488e7d174dbc75cd4 100644 (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;
 }