Skip to content

Commit

Permalink
Merge pull request #998 from lomereiter/fix_nwayunion
Browse files Browse the repository at this point in the history
changed return type of NWayUnion.front to auto ref
  • Loading branch information
Alex Rønne Petersen committed Dec 9, 2012
2 parents 78ff160 + 9f8669b commit 467db2b
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 467db2b

Please sign in to comment.