style fix: add space after for operator

This commit is contained in:
Sebastian Wilzbach 2016-04-27 02:04:02 +03:00
parent ff298c710d
commit 5a8988c149
35 changed files with 139 additions and 139 deletions

View file

@ -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)