Skip to content

Commit

Permalink
WindowServer: Replace std::move() with move()
Browse files Browse the repository at this point in the history
  • Loading branch information
nico committed Nov 26, 2024
1 parent 1598d13 commit d77876c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Userland/Services/WindowServer/Overlays.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ WindowStackSwitchOverlay::WindowStackSwitchOverlay(Screen& screen, WindowStack&
TileWindowOverlay::TileWindowOverlay(Window& window, Gfx::IntRect const& tiled_frame_rect, Gfx::Palette&& palette)
: m_window(window)
, m_tiled_frame_rect(tiled_frame_rect)
, m_palette(std::move(palette))
, m_palette(move(palette))
{
}

Expand Down

0 comments on commit d77876c

Please sign in to comment.