From: Stephan Witt Date: Tue, 25 Sep 2012 14:19:51 +0000 (+0200) Subject: C++ style to avoid compiler warning for non-NLS implementation of Messages::available X-Git-Tag: 2.1.0beta1~1488^2 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=e0787e839ff94788c8e34275440285f513e4eafe;p=features.git C++ style to avoid compiler warning for non-NLS implementation of Messages::available --- diff --git a/src/support/Messages.cpp b/src/support/Messages.cpp index 5eee6b7f6d..ca5c110913 100644 --- a/src/support/Messages.cpp +++ b/src/support/Messages.cpp @@ -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; }