From 2c998b0c9cbad1be14b51eaf2508abf0bffca2f1 Mon Sep 17 00:00:00 2001 From: Silent Date: Thu, 17 Oct 2024 23:42:08 +0200 Subject: [PATCH] Remove return std::move to make use of an implicit move --- SilentPatch/SVF.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SilentPatch/SVF.cpp b/SilentPatch/SVF.cpp index 17185c5..e48016c 100644 --- a/SilentPatch/SVF.cpp +++ b/SilentPatch/SVF.cpp @@ -192,7 +192,7 @@ namespace SVF break; } } - return std::move(pred); + return pred; } void RegisterGetModelInfoCB(void*(*func)(const char*, int*))