diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-11-07 16:38:45 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-11-07 16:38:45 +0100 |
commit | 71bffa986443ee464f41284b47eaf7c8b88695ae (patch) | |
tree | bdec82256a5e7c0d62cddf0d54e67adef52352c9 /AK | |
parent | 61a84193d7d28319c8f7d409a6c70edbcae47cac (diff) | |
download | serenity-71bffa986443ee464f41284b47eaf7c8b88695ae.zip |
Fix whiny build.
Diffstat (limited to 'AK')
-rw-r--r-- | AK/Function.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/Function.h b/AK/Function.h index 99fc8089b5..c95dd90311 100644 --- a/AK/Function.h +++ b/AK/Function.h @@ -97,7 +97,7 @@ private: CallableWrapper(const CallableWrapper&) = delete; CallableWrapper& operator=(const CallableWrapper&) = delete; - Out call(In... in) const final { return m_callable(forward<In>(in)...); } + Out call(In... in) const final override { return m_callable(forward<In>(in)...); } private: CallableType m_callable; |