Commit e35931d2 authored by Stefan Behnel's avatar Stefan Behnel

remove superfluous cast

parent 26ff1371
...@@ -992,7 +992,7 @@ class NameNode(AtomicExprNode): ...@@ -992,7 +992,7 @@ class NameNode(AtomicExprNode):
self.interned_cname, self.interned_cname,
rhs.py_result())) rhs.py_result()))
# in Py2.6+, we need to invalidate the method cache # in Py2.6+, we need to invalidate the method cache
code.putln("__Pyx_TypeModified((PyTypeObject*)%s);" % code.putln("__Pyx_TypeModified(%s);" %
entry.scope.parent_type.typeptr_cname) entry.scope.parent_type.typeptr_cname)
else: else:
code.put_error_if_neg(self.pos, code.put_error_if_neg(self.pos,
......
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