Commit eab0002b authored by Xavier Thompson's avatar Xavier Thompson

Support declarations of cpp inplace operators like '+='

parent 9572cd2d
...@@ -2875,6 +2875,7 @@ supported_overloaded_operators = cython.declare(set, set([ ...@@ -2875,6 +2875,7 @@ supported_overloaded_operators = cython.declare(set, set([
'++', '--', '~', '|', '&', '^', '<<', '>>', ',', '++', '--', '~', '|', '&', '^', '<<', '>>', ',',
'==', '!=', '>=', '>', '<=', '<', '==', '!=', '>=', '>', '<=', '<',
'[]', '()', '!', '=', '[]', '()', '!', '=',
'+=', '-=', '*=', '/=', '%=', '|=', '&=', '<<=', '>>=',
'bool', 'bool',
])) ]))
......
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