From 1d482a417d47f774e6cb3bcf241986291fb123d9 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 29 Sep 2022 20:57:08 +0200 Subject: [PATCH] Use std::move(), not move(). --- profiler/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp index 1c4561bb..6ac2dff0 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -519,7 +519,7 @@ static void DrawContents() HttpRequest( "nereid.pl", "/tracy/notes", 8099, [] ( int size, char* data ) { std::string notes( data, data+size ); delete[] data; - RunOnMainThread( [notes = move( notes )] { releaseNotes = std::move( notes ); tracy::s_wasActive = true; } ); + RunOnMainThread( [notes = std::move( notes )] { releaseNotes = std::move( notes ); tracy::s_wasActive = true; } ); } ); } ); }