mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-07 00:29:15 +00:00
LibGUI: Fix some clang-tidy warnings in Window.cpp
This commit is contained in:
parent
d66dab2d41
commit
e0986c2766
Notes:
sideshowbarker
2024-07-18 10:12:45 +09:00
Author: https://github.com/awesomekling
Commit: e0986c2766
1 changed files with 2 additions and 2 deletions
|
@ -35,8 +35,8 @@ static IDAllocator s_window_id_allocator;
|
|||
|
||||
class WindowBackingStore {
|
||||
public:
|
||||
WindowBackingStore(NonnullRefPtr<Gfx::Bitmap> bitmap)
|
||||
: m_bitmap(bitmap)
|
||||
explicit WindowBackingStore(NonnullRefPtr<Gfx::Bitmap> bitmap)
|
||||
: m_bitmap(move(bitmap))
|
||||
, m_serial(++s_next_backing_store_serial)
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue