From ccdc882c131d80b05310c7f9b05aa71013413eb1 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 7 May 2023 14:28:22 -0500 Subject: [PATCH] Fix pessimising move warning with GCC 13.1 --- src/nvhttp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvhttp.cpp b/src/nvhttp.cpp index e9e3966f..b53d8d73 100644 --- a/src/nvhttp.cpp +++ b/src/nvhttp.cpp @@ -471,7 +471,7 @@ namespace nvhttp { return; } - auto uniqID { std::move(get_arg(args, "uniqueid")) }; + auto uniqID { get_arg(args, "uniqueid") }; auto sess_it = map_id_sess.find(uniqID); args_t::const_iterator it;