Kaydet (Commit) d157b379 authored tarafından Jack Jansen's avatar Jack Jansen

Don't use a default "int" return type, gcc gives a warning about it.

üst f9114239
......@@ -98,7 +98,7 @@ class ObjectDefinition(GeneratorGroup):
"Override this method to apply additional checks/conversions"
def outputConvert(self):
Output("%s%s_Convert(PyObject *v, %s *p_itself)", self.static, self.prefix,
Output("%sint %s_Convert(PyObject *v, %s *p_itself)", self.static, self.prefix,
self.itselftype)
OutLbrace()
self.outputCheckConvertArg()
......
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