mirror of
https://github.com/dlang/phobos.git
synced 2025-05-03 00:20:26 +03:00
Fix a small bug in the just-merged pull request.
This commit is contained in:
parent
70418fac9e
commit
aa2a4077df
1 changed files with 3 additions and 3 deletions
|
@ -1906,7 +1906,7 @@ if (is(typeof(Range.init.front == Separator.init.front) : bool))
|
||||||
{
|
{
|
||||||
@property bool empty()
|
@property bool empty()
|
||||||
{
|
{
|
||||||
return _frontLength == size_t.max && _input.empty;
|
return _frontLength == RIndexType.max && _input.empty;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue