Commit 31a9ab1e authored by Xavier Thompson's avatar Xavier Thompson

Fix iteration over cypclass containers

parent 9586d928
...@@ -3030,6 +3030,8 @@ class CppIteratorNode(ExprNode): ...@@ -3030,6 +3030,8 @@ class CppIteratorNode(ExprNode):
def generate_result_code(self, code): def generate_result_code(self, code):
sequence_type = self.sequence.type sequence_type = self.sequence.type
if sequence_type.is_cyp_class:
self.cpp_attribute_op = "->"
# essentially 3 options: # essentially 3 options:
if self.sequence.is_name or self.sequence.is_attribute: if self.sequence.is_name or self.sequence.is_attribute:
# 1) is a name and can be accessed directly; # 1) is a name and can be accessed directly;
......
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