Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
argo
excit
Commits
e1ae2782
Commit
e1ae2782
authored
Jan 11, 2019
by
Nicolas Denoyelle
Browse files
fix range iterator stacking working for scatter and round-robin but not others
parent
727d9116
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/tleaf.c
View file @
e1ae2782
...
...
@@ -283,7 +283,7 @@ static int tleaf_init_with_it(excit_t it,
}
for
(
i
=
0
;
i
<
data_it
->
depth
;
i
++
)
{
ssize_t
l
=
data_it
->
order
[
i
];
ssize_t
l
=
data_it
->
order
_inverse
[
i
];
err
=
tleaf_add_level
(
data_it
->
levels
,
data_it
->
arities
[
l
]);
...
...
@@ -301,7 +301,7 @@ static int tleaf_init_with_it(excit_t it,
goto
error_with_levels
;
}
for
(
i
=
0
;
i
<
data_it
->
depth
;
i
++
)
{
ssize_t
l
=
data_it
->
order
_inverse
[
i
];
ssize_t
l
=
data_it
->
order
[
i
];
err
=
tleaf_add_level
(
data_it
->
levels_inverse
,
data_it
->
arities
[
l
]);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment