Kaydet (Commit) a81a0793 authored tarafından Thomas Arnhold's avatar Thomas Arnhold

pyuno: fix warnings with system python 3.4.0

   warning: missing initializer for member '_typeobject::tp_finalize' [-Wmissing-field-initializers]

Change-Id: I7ab82025fd8c2f0d8fa4943690a217c4a4dc369d
üst 3db8d606
......@@ -703,6 +703,9 @@ static PyTypeObject PyUNOType =
#if PY_VERSION_HEX >= 0x02060000
, 0
#endif
#if PY_VERSION_HEX >= 0x03040000
, 0
#endif
};
int PyUNO_initType()
......
......@@ -231,6 +231,9 @@ static PyTypeObject PyUNO_callable_Type =
#if PY_VERSION_HEX >= 0x02060000
, 0
#endif
#if PY_VERSION_HEX >= 0x03040000
, 0
#endif
};
PyRef PyUNO_callable_new (
......
......@@ -120,6 +120,9 @@ static PyTypeObject RuntimeImpl_Type =
#if PY_VERSION_HEX >= 0x02060000
, 0
#endif
#if PY_VERSION_HEX >= 0x03040000
, 0
#endif
};
/*----------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment