Fixed unused parameter warning.

This commit is contained in:
Robert Osfield
2016-06-08 11:02:51 +01:00
parent ae98593403
commit fff4b4ae65
3 changed files with 4 additions and 4 deletions

View File

@@ -86,7 +86,7 @@ bool SpellChecker::isCorrect(const std::string& word) const
return true;
}
SpellChecker::WordList SpellChecker::suggest(const std::string& word) const
SpellChecker::WordList SpellChecker::suggest(const std::string& /*word*/) const
{
return WordList();
}