Commit 1d119da0 authored by Stefan Behnel's avatar Stefan Behnel

fix C++ warning

parent 0322f85e
...@@ -8281,9 +8281,8 @@ class CythonArrayNode(ExprNode): ...@@ -8281,9 +8281,8 @@ class CythonArrayNode(ExprNode):
code.putln("%s = __pyx_format_from_typeinfo(&%s);" % code.putln("%s = __pyx_format_from_typeinfo(&%s);" %
(format_temp, type_info)) (format_temp, type_info))
buildvalue_fmt = " __PYX_BUILD_PY_SSIZE_T " * len(shapes) buildvalue_fmt = " __PYX_BUILD_PY_SSIZE_T " * len(shapes)
code.putln('%s = Py_BuildValue("(" %s ")", %s);' % (shapes_temp, code.putln('%s = Py_BuildValue((char*) "(" %s ")", %s);' % (
buildvalue_fmt, shapes_temp, buildvalue_fmt, ", ".join(shapes)))
", ".join(shapes)))
err = "!%s || !%s || !PyBytes_AsString(%s)" % (format_temp, err = "!%s || !%s || !PyBytes_AsString(%s)" % (format_temp,
shapes_temp, shapes_temp,
......
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