mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-29 11:00:29 +00:00
LibWeb: Remove unnecessary this
capture in RequestAnimationFrameDriver
This commit is contained in:
parent
c4be098b7d
commit
9f886d499a
Notes:
sideshowbarker
2024-07-18 03:08:13 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/9f886d499a6
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ private:
|
|||
struct RequestAnimationFrameDriver {
|
||||
RequestAnimationFrameDriver()
|
||||
{
|
||||
m_timer = Core::Timer::create_single_shot(16, [this] {
|
||||
m_timer = Core::Timer::create_single_shot(16, [] {
|
||||
HTML::main_thread_event_loop().schedule();
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue