diff --git a/source/blender/nodes/geometry/nodes/node_geo_tool_set_selection.cc b/source/blender/nodes/geometry/nodes/node_geo_tool_set_selection.cc index 1b68ecddeca..67954fcc911 100644 --- a/source/blender/nodes/geometry/nodes/node_geo_tool_set_selection.cc +++ b/source/blender/nodes/geometry/nodes/node_geo_tool_set_selection.cc @@ -62,7 +62,7 @@ static GField clamp_selection(const GField &selection) } static auto clamp = mf::build::SI1_SO( "Clamp", [](const float value) { return std::clamp(value, 0.0f, 1.0f); }); - return Field(FieldOperation::Create(clamp, {selection})); + return Field(FieldOperation::Create(clamp, {selection})); } static GField invert_selection(const GField &selection)