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/UnaryFunction1D/BPy_UnaryFunction1DVec2f.h
parentad7c43744cd9b6920031f483e564d4b836f379c2 (diff)
Code style clean-up.
Diffstat (limited to 'source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.h')
-rw-r--r--source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.h b/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.h
index ac6c5ced18a..61c85d7c9f5 100644
--- a/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.h
+++ b/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.h
@@ -29,8 +29,8 @@
* \ingroup freestyle
*/
-#ifndef FREESTYLE_PYTHON_UNARYFUNCTION1DVEC2F_H
-#define FREESTYLE_PYTHON_UNARYFUNCTION1DVEC2F_H
+#ifndef __FREESTYLE_PYTHON_UNARYFUNCTION1DVEC2F_H__
+#define __FREESTYLE_PYTHON_UNARYFUNCTION1DVEC2F_H__
#include "../BPy_UnaryFunction1D.h"
@@ -47,7 +47,7 @@ extern "C" {
extern PyTypeObject UnaryFunction1DVec2f_Type;
-#define BPy_UnaryFunction1DVec2f_Check(v) ( PyObject_IsInstance( (PyObject *) v, (PyObject *) &UnaryFunction1DVec2f_Type) )
+#define BPy_UnaryFunction1DVec2f_Check(v) (PyObject_IsInstance((PyObject *)v, (PyObject *)&UnaryFunction1DVec2f_Type))
/*---------------------------Python BPy_UnaryFunction1DVec2f structure definition----------*/
typedef struct {
@@ -56,7 +56,7 @@ typedef struct {
} BPy_UnaryFunction1DVec2f;
/*---------------------------Python BPy_UnaryFunction1DVec2f visible prototypes-----------*/
-int UnaryFunction1DVec2f_Init( PyObject *module );
+int UnaryFunction1DVec2f_Init(PyObject *module);
///////////////////////////////////////////////////////////////////////////////////////////
@@ -65,4 +65,4 @@ int UnaryFunction1DVec2f_Init( PyObject *module );
}
#endif
-#endif /* FREESTYLE_PYTHON_UNARYFUNCTION1DVEC2F_H */
+#endif /* __FREESTYLE_PYTHON_UNARYFUNCTION1DVEC2F_H__ */