Fix a small bug in the just-merged pull request.

This commit is contained in:
dsimcha 2011-07-12 20:49:57 -04:00
parent 70418fac9e
commit aa2a4077df

View file

@ -1906,7 +1906,7 @@ if (is(typeof(Range.init.front == Separator.init.front) : bool))
{
@property bool empty()
{
return _frontLength == size_t.max && _input.empty;
return _frontLength == RIndexType.max && _input.empty;
}
}