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>2013-09-13 12:45:20 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-09-13 12:45:20 +0400
commit7fb3de281dbb6bf252621846c11fecafffe5507a (patch)
treee52d513a56d6c36110a3db01c3bb57191b8d16f0 /source/blender/blenkernel/BKE_node.h
parent29cbf93b075c9be2fb635450e8ce55a474ec0e18 (diff)
change NODE_TREE_TYPES_BEGIN/END macros to include braces (matches CTX_DATA_BEGIN/END)
Diffstat (limited to 'source/blender/blenkernel/BKE_node.h')
-rw-r--r--source/blender/blenkernel/BKE_node.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_node.h b/source/blender/blenkernel/BKE_node.h
index a9d06ad6512..afa0deebf3f 100644
--- a/source/blender/blenkernel/BKE_node.h
+++ b/source/blender/blenkernel/BKE_node.h
@@ -337,7 +337,7 @@ struct GHashIterator *ntreeTypeGetIterator(void);
#define NODE_TREE_TYPES_END \
} \
BLI_ghashIterator_free(__node_tree_type_iter__); \
-}
+} (void)0
void ntreeSetTypes(const struct bContext *C, struct bNodeTree *ntree);