Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-06-07 04:50:10 +0300
committerCampbell Barton <campbell@blender.org>2022-06-07 04:50:10 +0300
commit56ede578e743af42ab8682a01e1f346c1acef0df (patch)
tree821a2a1f74ac4876675795f99286650e22187426
parent7c511f1b47d857f37aa36ee6ed8107cb88eb5c39 (diff)
Cleanup: compiler warnings: unused args, missing include, parenthesis
-rw-r--r--source/blender/io/stl/importer/stl_import_ascii_reader.cc1
-rw-r--r--source/blender/io/stl/importer/stl_import_binary_reader.cc2
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_input_instance_rotation.cc4
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_input_instance_scale.cc4
4 files changed, 6 insertions, 5 deletions
diff --git a/source/blender/io/stl/importer/stl_import_ascii_reader.cc b/source/blender/io/stl/importer/stl_import_ascii_reader.cc
index 2f2495fa4ca..2edb3c6a114 100644
--- a/source/blender/io/stl/importer/stl_import_ascii_reader.cc
+++ b/source/blender/io/stl/importer/stl_import_ascii_reader.cc
@@ -24,6 +24,7 @@
#include "fast_float.h"
#include "stl_import.hh"
+#include "stl_import_ascii_reader.hh"
#include "stl_import_mesh.hh"
namespace blender::io::stl {
diff --git a/source/blender/io/stl/importer/stl_import_binary_reader.cc b/source/blender/io/stl/importer/stl_import_binary_reader.cc
index c05b6ad1426..6eaed16160e 100644
--- a/source/blender/io/stl/importer/stl_import_binary_reader.cc
+++ b/source/blender/io/stl/importer/stl_import_binary_reader.cc
@@ -41,7 +41,7 @@ Mesh *read_stl_binary(FILE *file, Main *bmain, char *mesh_name, bool use_custom_
Array<STLBinaryTriangle> tris_buf(chunk_size);
STLMeshHelper stl_mesh(num_tris, use_custom_normals);
size_t num_read_tris;
- while (num_read_tris = fread(tris_buf.data(), sizeof(STLBinaryTriangle), chunk_size, file)) {
+ while ((num_read_tris = fread(tris_buf.data(), sizeof(STLBinaryTriangle), chunk_size, file))) {
for (size_t i = 0; i < num_read_tris; i++) {
if (use_custom_normals) {
stl_mesh.add_triangle(tris_buf[i].v1, tris_buf[i].v2, tris_buf[i].v3, tris_buf[i].normal);
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 {};