Compilation under Linux with GCC raises warnings in igs_parser.c. The warnings should be fixed.
Solution: Use boolean operator && instead of binary operator & to compare boolean values. I also realigned some multi-line statements I came across, without being exhaustive.
Compilation under Linux with GCC raises warnings in
igs_parser.c
. The warnings should be fixed.Solution: Use boolean operator
&&
instead of binary operator&
to compare boolean values.I also realigned some multi-line statements I came across, without being exhaustive.