Cleanup: Fix pessimizing move warning.

This commit is contained in:
2021-04-07 15:20:45 +05:30
parent 2fbee4598c
commit 15670ebb95

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;
}