correct include guards and add checks in check_style_c.py for them.

This commit is contained in:
2013-09-19 23:17:52 +00:00
parent 1d936a1074
commit d6b21df2e6
18 changed files with 67 additions and 24 deletions

View File

@@ -20,6 +20,9 @@
* ***** END GPL LICENSE BLOCK *****
*/
#ifndef __BPY_INTERN_STRING_H__
#define __BPY_INTERN_STRING_H__
/** \file blender/python/intern/bpy_intern_string.h
* \ingroup pythonintern
*/
@@ -36,3 +39,5 @@ extern PyObject *bpy_intern_str_attr;
extern PyObject *bpy_intern_str___slots__;
extern PyObject *bpy_intern_str___name__;
extern PyObject *bpy_intern_str___doc__;
#endif /* __BPY_INTERN_STRING_H__ */