-
Notifications
You must be signed in to change notification settings - Fork 32
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
Programmatically ignore warnings. #55
Comments
Not a clue if there's an MSVC version of this. Will find out. |
MSVC is easier.
To 'pop' you have to do
|
That's not a name though, is it? |
No, no names, just the warning number. e.g. C4244 will be 4244. |
Is there a particular reason for mangling warnings? I was under the impression we had a warningless build. |
They're annoying. We have a warningless build because of the way the flags are set up. |
There are some warnings that cause issues w.r.t. compilation (mainly Clang). Through the use of
#pragma
and_Pragma
you could programmatically disable some warnings that just make things a headache.Example:
Some candidates for programmatic removal include:
Probably others as time goes on.
The text was updated successfully, but these errors were encountered: