Skip to content

Commit

Permalink
Fix property enforcement in std.range.takeExactly.
Browse files Browse the repository at this point in the history
  • Loading branch information
denis-sh committed Aug 22, 2014
1 parent 68833f0 commit 22b391b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/range.d
Expand Up @@ -3469,7 +3469,7 @@ if (isInputRange!R)
@property size_t length() const { return _n; }
alias opDollar = length;

Take!R _takeExactly_Result_asTake()
@property Take!R _takeExactly_Result_asTake()
{
return typeof(return)(_input, _n);
}
Expand Down

0 comments on commit 22b391b

Please sign in to comment.