I\'ve worked on many projects where I\'ve been given code by others to update. More often than not I compile it and get about 1,000+ compiler warnings. When I see compiler w
Always clean up your warnings. If you have a specific case where you know the warning is ok, then suppress it for that instance only.
While some warnings can be benign, most signify a real problem with the code.
If you don't clean up all of your warnings then the warning list will continue to grow and the real problem cases will be lost in a sea of warning noise.