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/blenkernel/intern/CCGSubSurf.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source/blender/blenkernel/intern/CCGSubSurf.h') diff --git a/source/blender/blenkernel/intern/CCGSubSurf.h b/source/blender/blenkernel/intern/CCGSubSurf.h index d350d1f4280..fdf6d2df99f 100644 --- a/source/blender/blenkernel/intern/CCGSubSurf.h +++ b/source/blender/blenkernel/intern/CCGSubSurf.h @@ -18,6 +18,9 @@ * ***** END GPL LICENSE BLOCK ***** */ +#ifndef __CCGSUBSURF_H__ +#define __CCGSUBSURF_H__ + /** \file blender/blenkernel/intern/CCGSubSurf.h * \ingroup bke */ @@ -182,3 +185,5 @@ CCGFace* ccgFaceIterator_getCurrent (CCGFaceIterator *fi); int ccgFaceIterator_isStopped (CCGFaceIterator *fi); void ccgFaceIterator_next (CCGFaceIterator *fi); void ccgFaceIterator_free (CCGFaceIterator *fi); + +#endif /* __CCGSUBSURF_H__ */ -- cgit v1.2.3