mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-04 01:40:37 +08:00

src/libslic3r/SupportMaterial.cpp:770:17: warning: logical not is only applied to the left hand side of this comparison [-Wlogical-not-parentheses] if (!z > top_el.first) // next unless $z > $top_z; ^ ~ src/libslic3r/SupportMaterial.cpp:770:17: note: add parentheses after the '!' to evaluate the comparison first if (!z > top_el.first) // next unless $z > $top_z; ^ ( ) src/libslic3r/SupportMaterial.cpp:770:17: note: add parentheses around left hand side expression to silence this warning if (!z > top_el.first) // next unless $z > $top_z; ^ ( ) 1 warning generated.