Re: minisphere 1.4.2
Reply #709 –
Hm, I don't think this is too bad:
https://travis-ci.org/fatcerberus/minisphere/jobs/68574196
Rather noisy, but it looks like the vast majority of the warnings are C90 violations (long long, C++-style comments, etc.). The only ones that really concern me are these:
obj/color.c:32:3: warning: initializer element is not computable at load time [enabled by default]
This happens when I declare and initialize a large structure, usually an array of vertices, inline. The alternative is to set the individual struct members directly, which would be uglier.
So yeah, -pedantic wasn't nearly as scary as I thought it would be. A testament to how clean the codebase is, I guess.