mirror of
https://github.com/dlang/phobos.git
synced 2025-05-01 23:50:31 +03:00
change |=
to ||
This commit is contained in:
parent
a6da3ece06
commit
4ebca8c2bd
1 changed files with 1 additions and 1 deletions
|
@ -5702,7 +5702,7 @@ struct Until(alias pred, Range, Sentinel) if (isInputRange!Range)
|
||||||
{
|
{
|
||||||
_done = predSatisfied();
|
_done = predSatisfied();
|
||||||
_input.popFront();
|
_input.popFront();
|
||||||
_done |= _input.empty;
|
_done = _done || _input.empty;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue