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:
authorHans Goudey <h.goudey@me.com>2021-10-12 17:13:21 +0300
committerHans Goudey <h.goudey@me.com>2021-10-12 17:13:21 +0300
commitc1a1644db7b13425675819eeea9ef96bab4f5c97 (patch)
tree44b633870231c36c87b070fa4c3d922e8999d7df /source/blender/modifiers/intern/MOD_nodes_evaluator.cc
parent30cd1d10a95a5e32b9e0daf1a24c41123f262c96 (diff)
Cleanup: Attempt to fix benign macOS compile warnings
Diffstat (limited to 'source/blender/modifiers/intern/MOD_nodes_evaluator.cc')
-rw-r--r--source/blender/modifiers/intern/MOD_nodes_evaluator.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_nodes_evaluator.cc b/source/blender/modifiers/intern/MOD_nodes_evaluator.cc
index 8209d46ec24..a85fc29430f 100644
--- a/source/blender/modifiers/intern/MOD_nodes_evaluator.cc
+++ b/source/blender/modifiers/intern/MOD_nodes_evaluator.cc
@@ -1108,7 +1108,7 @@ class GeometryNodesEvaluator {
return;
}
bool will_be_triggered_by_other_node = false;
- for (const DSocket origin_socket : origin_sockets) {
+ for (const DSocket &origin_socket : origin_sockets) {
if (origin_socket->is_input()) {
/* Load the value directly from the origin socket. In most cases this is an unlinked
* group input. */