Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-02-23 22:50:33 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-02-23 22:50:33 +0400
commit3bd0b8971615d6ddc309aa33a40f7ebf0c25b0c6 (patch)
treebf8c39da5bbc4baafffe492419f005859c3ae066 /source/blender/freestyle/intern/python/Iterator/BPy_Interface0DIterator.h
parentad7c43744cd9b6920031f483e564d4b836f379c2 (diff)
Code style clean-up.
Diffstat (limited to 'source/blender/freestyle/intern/python/Iterator/BPy_Interface0DIterator.h')
-rw-r--r--source/blender/freestyle/intern/python/Iterator/BPy_Interface0DIterator.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/freestyle/intern/python/Iterator/BPy_Interface0DIterator.h b/source/blender/freestyle/intern/python/Iterator/BPy_Interface0DIterator.h
index 0a4afb495b7..72e827fce49 100644
--- a/source/blender/freestyle/intern/python/Iterator/BPy_Interface0DIterator.h
+++ b/source/blender/freestyle/intern/python/Iterator/BPy_Interface0DIterator.h
@@ -29,8 +29,8 @@
* \ingroup freestyle
*/
-#ifndef FREESTYLE_PYTHON_INTERFACE0DITERATOR_H
-#define FREESTYLE_PYTHON_INTERFACE0DITERATOR_H
+#ifndef __FREESTYLE_PYTHON_INTERFACE0DITERATOR_H__
+#define __FREESTYLE_PYTHON_INTERFACE0DITERATOR_H__
#include "../../view_map/Interface0D.h"
#include "../BPy_Iterator.h"
@@ -46,7 +46,7 @@ extern "C" {
extern PyTypeObject Interface0DIterator_Type;
-#define BPy_Interface0DIterator_Check(v) ( PyObject_IsInstance( (PyObject *) v, (PyObject *) &Interface0DIterator_Type) )
+#define BPy_Interface0DIterator_Check(v) (PyObject_IsInstance((PyObject *)v, (PyObject *)&Interface0DIterator_Type))
/*---------------------------Python BPy_Interface0DIterator structure definition----------*/
typedef struct {
@@ -61,4 +61,4 @@ typedef struct {
}
#endif
-#endif /* FREESTYLE_PYTHON_INTERFACE0DITERATOR_H */
+#endif /* __FREESTYLE_PYTHON_INTERFACE0DITERATOR_H__ */