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 7dfb65a
Show file tree
Hide file tree
Showing 2 changed files with 146 additions and 148 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 7dfb65a

Please sign in to comment.