From 56ede578e743af42ab8682a01e1f346c1acef0df Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 7 Jun 2022 11:50:10 +1000 Subject: Cleanup: compiler warnings: unused args, missing include, parenthesis --- .../blender/nodes/geometry/nodes/node_geo_input_instance_rotation.cc | 4 ++-- source/blender/nodes/geometry/nodes/node_geo_input_instance_scale.cc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/nodes') diff --git a/source/blender/nodes/geometry/nodes/node_geo_input_instance_rotation.cc b/source/blender/nodes/geometry/nodes/node_geo_input_instance_rotation.cc index a6d6722ae2a..4c7a148a797 100644 --- a/source/blender/nodes/geometry/nodes/node_geo_input_instance_rotation.cc +++ b/source/blender/nodes/geometry/nodes/node_geo_input_instance_rotation.cc @@ -16,8 +16,8 @@ class VectorFieldInput final : public GeometryFieldInput { } GVArray get_varray_for_context(const GeometryComponent &component, - const eAttrDomain domain, - IndexMask mask) const final + const eAttrDomain UNUSED(domain), + IndexMask UNUSED(mask)) const final { if (component.type() != GEO_COMPONENT_TYPE_INSTANCES) { return {}; diff --git a/source/blender/nodes/geometry/nodes/node_geo_input_instance_scale.cc b/source/blender/nodes/geometry/nodes/node_geo_input_instance_scale.cc index f2abc592f72..b3a362fbf3e 100644 --- a/source/blender/nodes/geometry/nodes/node_geo_input_instance_scale.cc +++ b/source/blender/nodes/geometry/nodes/node_geo_input_instance_scale.cc @@ -16,8 +16,8 @@ class VectorFieldInput final : public GeometryFieldInput { } GVArray get_varray_for_context(const GeometryComponent &component, - const eAttrDomain domain, - IndexMask mask) const final + const eAttrDomain UNUSED(domain), + IndexMask UNUSED(mask)) const final { if (component.type() != GEO_COMPONENT_TYPE_INSTANCES) { return {}; -- cgit v1.2.3