diff options
| author | Chris Webb <chris@arachsys.com> | 2023-12-10 09:58:40 +0000 |
|---|---|---|
| committer | Chris Webb <chris@arachsys.com> | 2023-12-10 09:58:40 +0000 |
| commit | a90d1d33f77caf8f75205bbc674d40e32accb102 (patch) | |
| tree | 31a1ccf1fcd9e9206bc9b6f9da4cd052c15b5afa /src | |
| parent | 7f49395cf931b2af8a75ffb5319a8aa8c395ed8d (diff) | |
Mark refresh_ifn() implementation as an override in input_handler.cc
This was spotted by clang's -Winconsistent-missing-override in -Wall.
Diffstat (limited to 'src')
| -rw-r--r-- | src/input_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_handler.cc b/src/input_handler.cc index 70ae08c2..17e72874 100644 --- a/src/input_handler.cc +++ b/src/input_handler.cc @@ -913,7 +913,7 @@ public: m_idle_timer.set_next_date(Clock::now() + get_idle_timeout(context())); } - void refresh_ifn() + void refresh_ifn() override { bool explicit_completion_selected = m_current_completion != -1 and (not m_prefix_in_completions or m_current_completion != m_completions.candidates.size() - 1); |
