Cleanup: Fix pessimizing move warning.

This commit is contained in:
Ankit Meel 2021-04-07 15:20:45 +05:30
parent 2fbee4598c
commit 15670ebb95
Notes: blender-bot 2023-02-14 07:31:34 +01:00
Referenced by issue #86744, Cannot sculpt under masked geometry 2.92
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ static void geo_node_boolean_exec(GeoNodeExecParams params)
if (operation < 0 || operation > 2) {
BLI_assert(false);
params.set_output("Geometry", std::move(GeometrySet()));
params.set_output("Geometry", GeometrySet());
return;
}