Code cleanup: white space and cmake was broken on all platforms

This commit is contained in:
2014-02-03 13:55:26 +11:00
parent 236e468359
commit 1dc1d92dab
16 changed files with 81 additions and 83 deletions

View File

@@ -102,9 +102,9 @@ static int AdjacencyIterator_init(BPy_AdjacencyIterator *self, PyObject *args, P
static PyObject *AdjacencyIterator_iter(BPy_AdjacencyIterator *self)
{
Py_INCREF(self);
self->at_start = true;
return (PyObject *) self;
Py_INCREF(self);
self->at_start = true;
return (PyObject *) self;
}
static PyObject *AdjacencyIterator_iternext(BPy_AdjacencyIterator *self)

View File

@@ -65,7 +65,7 @@ static char UnaryFunction0DUnsigned___doc__[] =
"\n"
".. method:: __init__()\n"
"\n"
" Default constructor.\n";
" Default constructor.\n";
static int UnaryFunction0DUnsigned___init__(BPy_UnaryFunction0DUnsigned *self, PyObject *args, PyObject *kwds)
{