From 3bd0b8971615d6ddc309aa33a40f7ebf0c25b0c6 Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Sat, 23 Feb 2013 18:50:33 +0000 Subject: Code style clean-up. --- .../freestyle/intern/python/Iterator/BPy_ChainingIterator.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.h') diff --git a/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.h b/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.h index fec44026457..b791e96a10c 100644 --- a/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.h +++ b/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.h @@ -29,8 +29,8 @@ * \ingroup freestyle */ -#ifndef FREESTYLE_PYTHON_CHAININGITERATOR_H -#define FREESTYLE_PYTHON_CHAININGITERATOR_H +#ifndef __FREESTYLE_PYTHON_CHAININGITERATOR_H__ +#define __FREESTYLE_PYTHON_CHAININGITERATOR_H__ #include "../../stroke/ChainingIterators.h" @@ -47,7 +47,7 @@ extern "C" { extern PyTypeObject ChainingIterator_Type; -#define BPy_ChainingIterator_Check(v) ( PyObject_IsInstance( (PyObject *) v, (PyObject *) &ChainingIterator_Type) ) +#define BPy_ChainingIterator_Check(v) (PyObject_IsInstance((PyObject *)v, (PyObject *)&ChainingIterator_Type)) /*---------------------------Python BPy_ChainingIterator structure definition----------*/ typedef struct { @@ -61,4 +61,4 @@ typedef struct { } #endif -#endif /* FREESTYLE_PYTHON_CHAININGITERATOR_H */ +#endif /* __FREESTYLE_PYTHON_CHAININGITERATOR_H__ */ -- cgit v1.2.3