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:
authorJacques Lucke <jacques@blender.org>2020-04-23 21:49:42 +0300
committerJacques Lucke <jacques@blender.org>2020-04-23 21:49:42 +0300
commited4f33a7bd3ed185f9b863a92673b3319c1890fe (patch)
tree036c77da28037c67dabe3c31bc00d75f5a52eff3 /source/blender/depsgraph
parent8f5a4a4da33375b591dd77e424096878ff2e2aaf (diff)
Cleanup: silence unused parameter warning
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_query_foreach.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_query_foreach.cc b/source/blender/depsgraph/intern/depsgraph_query_foreach.cc
index 4882897ad8d..16c86d905ba 100644
--- a/source/blender/depsgraph/intern/depsgraph_query_foreach.cc
+++ b/source/blender/depsgraph/intern/depsgraph_query_foreach.cc
@@ -66,7 +66,7 @@ bool deg_foreach_needs_visit(const OperationNode *op_node, const int flags)
return true;
}
-void deg_foreach_dependent_operation(const Depsgraph *graph,
+void deg_foreach_dependent_operation(const Depsgraph *UNUSED(graph),
const IDNode *target_id_node,
eDepsObjectComponentType source_component_type,
int flags,