summaryrefslogtreecommitdiff
path: root/AK
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-11-07 16:38:45 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-11-07 16:38:45 +0100
commit71bffa986443ee464f41284b47eaf7c8b88695ae (patch)
treebdec82256a5e7c0d62cddf0d54e67adef52352c9 /AK
parent61a84193d7d28319c8f7d409a6c70edbcae47cac (diff)
downloadserenity-71bffa986443ee464f41284b47eaf7c8b88695ae.zip
Fix whiny build.
Diffstat (limited to 'AK')
-rw-r--r--AK/Function.h2
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;