1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 09:34:57 +09:00

Fix whiny build.

This commit is contained in:
Andreas Kling 2018-11-07 16:38:45 +01:00
parent 61a84193d7
commit 71bffa9864
Notes: sideshowbarker 2024-07-19 18:32:29 +09:00
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;