diff --git a/aegisub/tests/libaegisub_syntax_highlight.cpp b/aegisub/tests/libaegisub_syntax_highlight.cpp index e9884ac98..4295f3eaf 100644 --- a/aegisub/tests/libaegisub_syntax_highlight.cpp +++ b/aegisub/tests/libaegisub_syntax_highlight.cpp @@ -19,7 +19,9 @@ class MockSpellChecker : public agi::SpellChecker { void AddWord(std::string const&) { } + void RemoveWord(std::string const&) { } bool CanAddWord(std::string const&) { return false; } + bool CanRemoveWord(std::string const&) { return false; } std::vector GetSuggestions(std::string const&) { return std::vector(); } std::vector GetLanguageList() { return std::vector(); } bool CheckWord(std::string const& word) { return word != "incorrect"; }