Freestyle: minor optimization for space by using a pointer to a const char array instead of std::string.

This commit is contained in:
2014-07-25 12:23:09 +09:00
parent e58d788340
commit be980c4ee4
6 changed files with 14 additions and 13 deletions

View File

@@ -185,7 +185,7 @@ PyDoc_STRVAR(SShape_name_doc,
static PyObject *SShape_name_get(BPy_SShape *self, void *UNUSED(closure))
{
return PyUnicode_FromString(self->ss->getName().c_str());
return PyUnicode_FromString(self->ss->getName());
}
static int SShape_name_set(BPy_SShape *self, PyObject *value, void *UNUSED(closure))
@@ -194,7 +194,7 @@ static int SShape_name_set(BPy_SShape *self, PyObject *value, void *UNUSED(closu
PyErr_SetString(PyExc_TypeError, "value must be a string");
return -1;
}
const string name = _PyUnicode_AsString(value);
const char *name = _PyUnicode_AsString(value);
self->ss->setName(name);
return 0;
}