Remove return std::move to make use of an implicit move

This commit is contained in:
Silent 2024-10-17 23:42:08 +02:00
parent de59add19f
commit 2c998b0c9c
No known key found for this signature in database
GPG Key ID: AE53149BB0C45AF1

View File

@ -192,7 +192,7 @@ namespace SVF
break;
}
}
return std::move(pred);
return pred;
}
void RegisterGetModelInfoCB(void*(*func)(const char*, int*))