mirror of
https://github.com/dlang/phobos.git
synced 2025-04-30 15:10:46 +03:00
Fix return scope
in cartesianProduct Result.save
This commit is contained in:
parent
8dc3a852ef
commit
3d8b95791f
1 changed files with 1 additions and 1 deletions
|
@ -404,7 +404,7 @@ if (ranges.length >= 2 &&
|
||||||
r = ranges[i].save; // rollover
|
r = ranges[i].save; // rollover
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@property Result save() scope return
|
@property Result save() return scope
|
||||||
{
|
{
|
||||||
Result copy = this;
|
Result copy = this;
|
||||||
foreach (i, r; ranges)
|
foreach (i, r; ranges)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue