1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:57:47 +00:00

Fix whiny build.

This commit is contained in:
Andreas Kling 2018-11-07 16:38:45 +01:00
parent 61a84193d7
commit 71bffa9864
3 changed files with 7 additions and 5 deletions

View file

@ -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;