mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-23 06:33:57 -06:00
Fix mac warnings
This commit is contained in:
parent
6f3f3624c5
commit
8295f81685
1 changed files with 1 additions and 1 deletions
|
@ -155,7 +155,7 @@ template<class _Mesh> TriangleMesh cgal_to_triangle_mesh(const _Mesh &cgalmesh)
|
|||
|
||||
int i = 0;
|
||||
Vec3i facet;
|
||||
for (const auto &v : vtc) {
|
||||
for (auto v : vtc) {
|
||||
if (i > 2) { i = 0; break; }
|
||||
facet(i++) = v;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue