Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-09-29 21:57:08 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-09-29 22:02:05 +0300
commit1d482a417d47f774e6cb3bcf241986291fb123d9 (patch)
treef319712f627bda0fdbf065a4a6cf76c9faed9f36 /profiler/src
parent73fe208b974118f05d588032ee0b5fbef7fd37ff (diff)
Use std::move(), not move().
Diffstat (limited to 'profiler/src')
-rw-r--r--profiler/src/main.cpp2
1 files changed, 1 insertions, 1 deletions
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; } );
} );
} );
}