Skip to content

Commit

Permalink
changed return type of NWayUnion.front to auto ref
Browse files Browse the repository at this point in the history
  • Loading branch information
lomereiter committed Dec 9, 2012
1 parent 78ff160 commit 9f8669b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/algorithm.d
Expand Up @@ -9350,7 +9350,7 @@ struct NWayUnion(alias less, RangeOfRanges)

@property bool empty() { return _ror.empty; }

@property ref ElementType front()
@property auto ref front()
{
return _heap.front.front;
}
Expand Down

0 comments on commit 9f8669b

Please sign in to comment.