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 +++++ 1 file changed, 5 insertions(+) (limited to 'source/blender/compositor/COM_compositor.h') 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__ */ -- cgit v1.2.3