1
SFML game jam / Re: Website Status
« on: March 27, 2014, 02:12:43 am »
If you guys like, you can try this ready-to-roll game jam application made in Python, Flask and lots of small libraries: https://github.com/svenstaro/flamejam
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Quote from: "Laurent"And why isn't it in -Wall (which I assumed gathered all the possible warnings)?
Unfortunately that's not how it works. "-Wall" only activates an actually vey specific set of warnings: http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html
As you can see there is also "-Wextra" which activates a bunch of others, and a few "extra extra" options that are in neither :/
Lots of these warnings could be useful, but I get SO many warnings from the libraries I use that it's simply not possible to keep them on. If anyone knows a solution to only display warnings for you own project, I'd be grateful!