Skip to content
Snippets Groups Projects
Commit 3685bac6 authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

Removed the flag Py_TPFLAGS_HAVE_INPLACEOPS since the flag Py_TPFLAGS_DEFAULT already flag this bit

parent f3722a49
No related branches found
No related tags found
No related merge requests found
...@@ -597,7 +597,7 @@ bool init_BobLearnEMGMMStats(PyObject* module) ...@@ -597,7 +597,7 @@ bool init_BobLearnEMGMMStats(PyObject* module)
// initialize the type struct // initialize the type struct
PyBobLearnEMGMMStats_Type.tp_name = GMMStats_doc.name(); PyBobLearnEMGMMStats_Type.tp_name = GMMStats_doc.name();
PyBobLearnEMGMMStats_Type.tp_basicsize = sizeof(PyBobLearnEMGMMStatsObject); PyBobLearnEMGMMStats_Type.tp_basicsize = sizeof(PyBobLearnEMGMMStatsObject);
PyBobLearnEMGMMStats_Type.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_INPLACEOPS; PyBobLearnEMGMMStats_Type.tp_flags = Py_TPFLAGS_DEFAULT;
PyBobLearnEMGMMStats_Type.tp_doc = GMMStats_doc.doc(); PyBobLearnEMGMMStats_Type.tp_doc = GMMStats_doc.doc();
// set the functions // set the functions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment