Jenkins compile fix

This commit is contained in:
Alexander Bock
2017-07-19 01:28:30 -04:00
parent 88265a469d
commit 3469d19de7

View File

@@ -547,7 +547,9 @@ bool LuaConsole::keyboardCallback(Key key, KeyModifier modifier, KeyAction actio
}
}
void LuaConsole::charCallback(unsigned int codepoint, KeyModifier /*modifier*/) {
void LuaConsole::charCallback(unsigned int codepoint,
[[maybe_unused]] KeyModifier modifier)
{
if (!_isVisible) {
return;
}