1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 18:20:43 +09:00

Everywhere: Remove pessimizing and redundant move()

This commit is contained in:
Andreas Kling 2021-03-17 16:30:02 +01:00
parent fa28cc85e6
commit f59ad2dc57
Notes: sideshowbarker 2024-07-18 21:16:43 +09:00
9 changed files with 11 additions and 11 deletions

View file

@ -120,7 +120,7 @@ OwnPtr<DebugSession> DebugSession::exec_and_attach(const String& command, String
// At this point, libraries should have been loaded
debug_session->update_loaded_libs();
return move(debug_session);
return debug_session;
}
bool DebugSession::poke(u32* address, u32 data)