Mod: whitespace fixes

This commit is contained in:
wmayer
2022-05-17 11:51:22 +02:00
parent 216ed31d8a
commit 74ead2c6ff
4 changed files with 30 additions and 20 deletions

View File

@@ -275,11 +275,14 @@ struct MeshFastBuilder::Private {
}
bool operator<(const Vertex& rhs) const
{
if (x != rhs.x)
if (x != rhs.x)
return x < rhs.x;
else if (y != rhs.y) return y < rhs.y;
else if (z != rhs.z) return z < rhs.z;
else return false;
else if (y != rhs.y)
return y < rhs.y;
else if (z != rhs.z)
return z < rhs.z;
else
return false;
}
};