From d6b21df2e61318c3465272c9055be4451060d94c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 19 Sep 2013 23:17:52 +0000 Subject: correct include guards and add checks in check_style_c.py for them. --- source/blender/nodes/NOD_common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/nodes') 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__ */ -- cgit v1.2.3