Re: minisphere 2.1.6
Reply #985 –
So I finally got Travis to actually use clang to build minisphere (turns out SCons doesn't honor the pre-existing environment, it was simple now that I have a makefile), and said compiler now seems to hate me, mostly because I like to do this:
if (thing = create_foobar(...)) {
...
}
It's just so succinct and elegant that I got into the habit of doing it everywhere. I can easily shut up the warnings of course, by adding another set of parentheses, but that triggers my OCD and makes the statement look uglier. 
I should try adding -Wall -pedantic to that command line and see if I can get clang even angrier at me. 
Anyway, I think I'm getting close to releasing the first 3.0 beta, but I have to get SSJ to be able to locate source code properly first, and also implement breakpoints. It's kind of useless without those.