mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 14:10:30 +03:00
style fix: add space after for operator
This commit is contained in:
parent
ff298c710d
commit
5a8988c149
35 changed files with 139 additions and 139 deletions
|
@ -1870,14 +1870,14 @@ bool isPermutation(alias pred = "a == b", Range1, Range2)
|
|||
// of item in the scanning loop has an index smaller than the current index,
|
||||
// then you know that the element has been seen before
|
||||
size_t index;
|
||||
outloop: for(auto r1s1 = r1.save; !r1s1.empty; r1s1.popFront, index++)
|
||||
outloop: for (auto r1s1 = r1.save; !r1s1.empty; r1s1.popFront, index++)
|
||||
{
|
||||
auto item = r1s1.front;
|
||||
r1_count = 0;
|
||||
r2_count = 0;
|
||||
|
||||
size_t i;
|
||||
for(auto r1s2 = r1.save; !r1s2.empty; r1s2.popFront, i++)
|
||||
for (auto r1s2 = r1.save; !r1s2.empty; r1s2.popFront, i++)
|
||||
{
|
||||
auto e = r1s2.front;
|
||||
if (predEquals(e, item) && i < index)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue