-
Notifications
You must be signed in to change notification settings - Fork 27
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
Fixing the errors/warnings from using the MSVC toolchain #6
base: master
Are you sure you want to change the base?
Fixing the errors/warnings from using the MSVC toolchain #6
Conversation
You need to set your local git username and email. All your commits came through as unknown Corey@Ike. Also on linux the build fails with: If this is a VC++ specific directive, can you wrap it in an #ifdef WIN32? |
yeah, I realized I didn't set the name correctly after submitting it (I Regarding UNREFERENCED_PARAMETER: On Tue, Jun 19, 2012 at 8:52 AM, jsadusk <
|
Ok, yeah we usually have a no-warnings policy, and gcc usually complains
|
Yeah, removing the name from the unused parameter prevents the unused On Tue, Jun 19, 2012 at 6:58 PM, jsadusk <
|
A lot of small changes to remove compilation errors & warnings from using MSVC. Some stem from symbol collisions between "min", "max", & "polygon" while others are fixing ambiguity of struct vs class. And then there's attempting to fix the .pro file issues like using a ".lib" instead if ".a" and removing the unsupported options like "-static -static-libgcc -static-libstdc++".