Skip to content
This repository was archived by the owner on May 18, 2019. It is now read-only.

Commit 8dca89a

Browse files
perostOpenModelica-Hudson
authored andcommitted
[NF] Try harder.
- Allow FLAT_BINDINGs to repeat when using them with ExpressionIterator, to avoid having to create unnecessary arrays. Belonging to [master]: - #2514
1 parent b592193 commit 8dca89a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Compiler/NFFrontEnd/NFExpressionIterator.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public
128128
then if binding.isEach then EACH_ITERATOR(binding.bindingExp) else fromExp(binding.bindingExp);
129129

130130
case Binding.FLAT_BINDING()
131-
then SCALAR_ITERATOR(binding.bindingExp);
131+
then EACH_ITERATOR(binding.bindingExp);
132132
end match;
133133
end fromBinding;
134134

0 commit comments

Comments
 (0)