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/compositor/COM_compositor.h | 5 +++++ source/blender/compositor/COM_defines.h | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) (limited to 'source/blender/compositor') diff --git a/source/blender/compositor/COM_compositor.h b/source/blender/compositor/COM_compositor.h index 204c3237e65..1936909b004 100644 --- a/source/blender/compositor/COM_compositor.h +++ b/source/blender/compositor/COM_compositor.h @@ -20,6 +20,9 @@ * Monique Dewanchand */ +#ifndef __COM_COMPOSITOR_H__ +#define __COM_COMPOSITOR_H__ + #ifdef __cplusplus extern "C" { #endif @@ -343,3 +346,5 @@ int COM_isHighlightedbNode(bNode *bnode); #ifdef __cplusplus } #endif + +#endif /* __COM_COMPOSITOR_H__ */ diff --git a/source/blender/compositor/COM_defines.h b/source/blender/compositor/COM_defines.h index 3cc161a5877..3b0e9f239bb 100644 --- a/source/blender/compositor/COM_defines.h +++ b/source/blender/compositor/COM_defines.h @@ -20,8 +20,8 @@ * Monique Dewanchand */ -#ifndef _COM_defines_h_ -#define _COM_defines_h_ +#ifndef __COM_DEFINES_H__ +#define __COM_DEFINES_H__ /** * @brief possible data types for SocketConnection @@ -109,4 +109,4 @@ typedef enum OrderOfChunks { #define COM_BLUR_BOKEH_PIXELS 512 -#endif +#endif /* __COM_DEFINES_H__ */ -- cgit v1.2.3