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 <ideasman42@gmail.com>2021-01-05 15:08:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-05 15:09:50 +0300
commit1f6846fa4e3d957b438630afc167d5ac539723f4 (patch)
tree7f5af06ed7293efb6ecd4acf58f4d1f273c6a189 /source/blender/nodes/composite/node_composite_util.h
parente4884d224ccaa544d9c07ed9e547dd60d8196f0a (diff)
Cleanup: remove UNUSED(..) from public function declarations
This doesn't serve any purpose and can become out of sync with the function it's self without reporting warnings.
Diffstat (limited to 'source/blender/nodes/composite/node_composite_util.h')
-rw-r--r--source/blender/nodes/composite/node_composite_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/composite/node_composite_util.h b/source/blender/nodes/composite/node_composite_util.h
index 8810b760e8c..800c55df4d6 100644
--- a/source/blender/nodes/composite/node_composite_util.h
+++ b/source/blender/nodes/composite/node_composite_util.h
@@ -55,7 +55,7 @@ extern "C" {
#define CMP_SCALE_MAX 12000
bool cmp_node_poll_default(struct bNodeType *ntype, struct bNodeTree *ntree);
-void cmp_node_update_default(struct bNodeTree *UNUSED(ntree), struct bNode *node);
+void cmp_node_update_default(struct bNodeTree *ntree, struct bNode *node);
void cmp_node_type_base(
struct bNodeType *ntype, int type, const char *name, short nclass, short flag);