diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-08-18 07:47:53 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-08-18 07:47:53 (GMT) |
commit | ef66e5930efdfccb6b7db125ada6908650e745da (patch) | |
tree | 49ee4ca6e32de55c93dae6ab48b44b0b78fad18f /plugins/itanium/python | |
parent | 9167c2a44efba513aaf8cac6d5589c565ed14ddf (diff) |
Removed a useless cast in the Python bindings.
Diffstat (limited to 'plugins/itanium/python')
-rw-r--r-- | plugins/itanium/python/demangler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/itanium/python/demangler.c b/plugins/itanium/python/demangler.c index dfade68..1838aa1 100644 --- a/plugins/itanium/python/demangler.c +++ b/plugins/itanium/python/demangler.c @@ -106,7 +106,7 @@ PyTypeObject *get_python_itanium_demangler_type(void) .tp_methods = py_itanium_demangler_methods, .tp_getset = py_itanium_demangler_getseters, - .tp_new = (newfunc)py_itanium_demangler_new + .tp_new = py_itanium_demangler_new }; |