mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 14:40:30 +03:00
std.algorithm.iteration: Fix a -dip1000 compilable issue
This commit is contained in:
parent
1db9cbedd8
commit
83c02f21ea
2 changed files with 5 additions and 5 deletions
|
@ -4236,7 +4236,7 @@ if (is(typeof(binaryFun!pred(r.front, s.front)) : bool)
|
|||
@property empty() { return _impl.empty; }
|
||||
@property auto front() { return _impl.front; }
|
||||
void popFront() { _impl = _impl[1..$]; }
|
||||
@property RefSep save() { return new RefSep(_impl); }
|
||||
@property RefSep save() scope { return new RefSep(_impl); }
|
||||
@property auto length() { return _impl.length; }
|
||||
}
|
||||
auto sep = new RefSep("->");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue