Commit 2e726768 authored by gsamain's avatar gsamain Committed by Xavier Thompson

cypclass constructor wrapper access in user code (__constructor__)

parent 522c0cc2
...@@ -2826,6 +2826,8 @@ class CppClassScope(Scope): ...@@ -2826,6 +2826,8 @@ class CppClassScope(Scope):
name = "<del>" name = "<del>"
elif name == "__alloc__": elif name == "__alloc__":
name = "<alloc>" name = "<alloc>"
elif name == "__constructor__":
name = "<constructor>"
else: else:
operator = self.operator_table.get(name, None) operator = self.operator_table.get(name, None)
if operator: if operator:
......
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