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:
parent
61a84193d7
commit
71bffa9864
Notes:
sideshowbarker
2024-07-19 18:32:29 +09:00
Author: https://github.com/awesomekling
Commit: 71bffa9864
3 changed files with 7 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue