Mesh: Fix linter warnings

This commit is contained in:
wmayer
2024-11-20 23:02:40 +01:00
committed by wwmayer
parent 4e82a0af48
commit 7a2bfb7370
86 changed files with 1734 additions and 1882 deletions

View File

@@ -393,17 +393,14 @@ public:
if (a.z == b.z) {
return false;
}
else {
return a.z < b.z;
}
}
else {
return a.y < b.y;
return a.z < b.z;
}
return a.y < b.y;
}
else {
return a.x < b.x;
}
return a.x < b.x;
}
};