-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compiler warnings #2
Comments
Send a pull request, please. Thanks! |
What do you get by turning on Wextra that makes it worthwhile? |
I find it generally picks up on code that's perfectly valid, but is It was also really useful for us when we were performing the 64 bit All in all, it just keeps our code looking tidier :) On 15 January 2013 07:59, bdkjones [email protected] wrote:
|
#3 is merged. Closed |
...actually, not all the warnings are gone :( I've opened #7 with the last few |
First off - great to see UKKQueue ready for 64 bit (yeah, I'm a bit behind) and using GCD, thanks!
If you turn on the
-Wextra
compiler warning flag when building VDKQueue, you get a few warnings about semicolons at the end of files (e.g. VDKQueue.m:L54) and about unknown pragmas (e.g. VDKQueue.m:L30,31)Not a big issue, but would you be able to fix these warnings, just so that things look a little nicer when I build my projects.
Happy to send a pull request if you want
Thanks!
The text was updated successfully, but these errors were encountered: