io.h: Add missing override

Found with clang's -Winconsistent-missing-destructor-override

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2019-11-19 22:17:30 -08:00
committed by ridiculousfish
parent 586ac3dfa7
commit 69d0bb7c0d
11 changed files with 12 additions and 14 deletions

View File

@@ -2082,7 +2082,7 @@ void reader_data_t::super_highlight_me_plenty(int match_highlight_pos_adjust, bo
const wcstring &cmd = el->text, &suggest = autosuggestion;
if (can_autosuggest() && !suggest.empty() &&
string_prefixes_string_case_insensitive(cmd, suggest)) {
; // the autosuggestion is still reasonable, so do nothing
// the autosuggestion is still reasonable, so do nothing
} else {
update_autosuggestion();
}