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:
Diffstat (limited to 'source/blender/freestyle/intern/python/BPy_BBox.cpp')
-rw-r--r--source/blender/freestyle/intern/python/BPy_BBox.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/freestyle/intern/python/BPy_BBox.cpp b/source/blender/freestyle/intern/python/BPy_BBox.cpp
index eb92bacc6ab..1fff08dbd8f 100644
--- a/source/blender/freestyle/intern/python/BPy_BBox.cpp
+++ b/source/blender/freestyle/intern/python/BPy_BBox.cpp
@@ -70,13 +70,13 @@ static int BBox_init(BPy_BBox *self, PyObject *args, PyObject *kwds)
return 0;
}
-static void BBox_dealloc(BPy_BBox* self)
+static void BBox_dealloc(BPy_BBox *self)
{
delete self->bb;
- Py_TYPE(self)->tp_free((PyObject*)self);
+ Py_TYPE(self)->tp_free((PyObject *)self);
}
-static PyObject * BBox_repr(BPy_BBox* self)
+static PyObject *BBox_repr(BPy_BBox *self)
{
return PyUnicode_FromFormat("BBox - address: %p", self->bb);
}