From b8e019d8396ed102323df234df8b1cc6b35712a1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 23 Feb 2012 10:41:31 +0000 Subject: use __ prefix on header guards to avoid mixing up defines with api functions / classes. --- source/gameengine/Expressions/PyObjectPlus.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/gameengine/Expressions/PyObjectPlus.h') diff --git a/source/gameengine/Expressions/PyObjectPlus.h b/source/gameengine/Expressions/PyObjectPlus.h index 107ae453c8e..27c948ecaa9 100644 --- a/source/gameengine/Expressions/PyObjectPlus.h +++ b/source/gameengine/Expressions/PyObjectPlus.h @@ -29,8 +29,8 @@ * \ingroup expressions */ -#ifndef _PY_OBJECT_PLUS_H -#define _PY_OBJECT_PLUS_H +#ifndef __PYOBJECTPLUS_H__ +#define __PYOBJECTPLUS_H__ /* for now keep weakrefs optional */ #define USE_WEAKREFS @@ -652,4 +652,4 @@ PyObject *py_getattr_dict(PyObject *pydict, PyObject *tp_dict); PyObject *PyUnicode_From_STR_String(const STR_String& str); #endif -#endif // _PY_OBJECT_PLUS_H +#endif // __PYOBJECTPLUS_H__ -- cgit v1.2.3