Skip to content

Commit

Permalink
Remove arrow functions
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthaTi committed Sep 26, 2024
1 parent 1c68c45 commit 4e40b0c
Show file tree
Hide file tree
Showing 11 changed files with 275 additions and 234 deletions.
4 changes: 3 additions & 1 deletion source/fluid/actions.d
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,9 @@ unittest {
root.children[1].scrollIntoView;
root.draw();

auto getPositions() => io.textures.map!(a => a.position).array;
auto getPositions() {
return io.textures.map!(a => a.position).array;
}

// Find label positions
auto positions = getPositions();
Expand Down
Loading

0 comments on commit 4e40b0c

Please sign in to comment.