Fix pessimising move warning with GCC 13.1

This commit is contained in:
Cameron Gutman
2023-05-07 14:28:22 -05:00
parent 7e8c43c796
commit ccdc882c13
+1 -1
View File
@@ -471,7 +471,7 @@ namespace nvhttp {
return; return;
} }
auto uniqID { std::move(get_arg(args, "uniqueid")) }; auto uniqID { get_arg(args, "uniqueid") };
auto sess_it = map_id_sess.find(uniqID); auto sess_it = map_id_sess.find(uniqID);
args_t::const_iterator it; args_t::const_iterator it;