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-20 03:17:52 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-09-20 03:17:52 +0400
commitd6b21df2e61318c3465272c9055be4451060d94c (patch)
treedb3d53384b93483a447050bcb478b3593c3a32ab /source/blender/nodes/NOD_common.h
parent1d936a107447ad70b5ee413b7b3be5e7947d9c62 (diff)
correct include guards and add checks in check_style_c.py for them.
Diffstat (limited to 'source/blender/nodes/NOD_common.h')
-rw-r--r--source/blender/nodes/NOD_common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/nodes/NOD_common.h b/source/blender/nodes/NOD_common.h
index ac0ceab36d4..a8279b4c66a 100644
--- a/source/blender/nodes/NOD_common.h
+++ b/source/blender/nodes/NOD_common.h
@@ -29,8 +29,8 @@
* \ingroup nodes
*/
-#ifndef NOD_COMMON_H
-#define NOD_COMMON_H
+#ifndef __NOD_COMMON_H__
+#define __NOD_COMMON_H__
#include "BKE_node.h"
@@ -51,4 +51,4 @@ struct bNodeSocket *node_group_output_find_socket(struct bNode *node, const char
void node_group_input_verify(struct bNodeTree *ntree, struct bNode *node, struct ID *id);
void node_group_output_verify(struct bNodeTree *ntree, struct bNode *node, struct ID *id);
-#endif
+#endif /* __NOD_COMMON_H__ */