31
votes
18answers
2k views
C / C++ compiler warnings: do you clean up all your code to remove them or leave them in?
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 warnings they make me feel …
14
votes
6answers
3k views
“No newline at end of file” compiler warning
What's the reason for the "No newline at end of file" warning in some C++ compilers?
What's good about having an empty line at the end of a source\header file?
12
votes
9answers
12k views
How to get rid of `deprecated conversion from string constant to ‘char*’` warnings in GCC?
So I'm working on an exceedingly large codebase, and recently upgraded to gcc 4.3, which now triggers this warning:
warning: deprecated conversion from string constant to ‘char*’
Obviously, the …
11
votes
15answers
567 views
Is it a good idea to eliminate compiler warnings?
In the past I've worked with -Wall and other switches for gcc to eliminate every compiler warning for projects I've been involved in. Similarly, in Perl, I always program with use strict and use …
10
votes
17answers
474 views
Besides “treat warnings as errors” and fixing memory leaks, what other ideas should we implement as part of our coding standards?
First let me say, I am not a coder but I help manage a coding team. No one on the team has more than about 5 years experience, and most of them have only worked for this company.. So we are flying a …
10
votes
6answers
628 views
Should I turn on Perl warnings with the command-line switch or pragma?
Is there a difference between the two examples below for beginning a Perl script? If so, when would I use one over the other?
example 1:
#!/usr/bin/perl
use warnings;
example 2:
#!/usr/bin/perl …
8
votes
2answers
175 views
Why is the ‘Use of “shift” without parentheses is ambiguous’ warning issued by Perl?
Does anyone know what parsing or precedence decisions resulted in the warning 'Use of "shift" without parentheses is ambiguous' being issued for code like:
shift . 'some string';
# and not
(shift) …
8
votes
12answers
3k views
How do I address unchecked cast warnings?
Eclipse is giving me a warning of the following form:
Type safety: Unchecked cast from Object to HashMap<String, String>
This is from a call to an API that I have no control over which …
8
votes
12answers
286 views
Effective technique to reduce and eliminate warnings in a large code base?
I have been involved in the development of large code bases that grew to millions lines of code over the course of multiple years and where the amount of warnings grew out of control because it was …
7
votes
6answers
759 views
How to ignore deprecation warnings in Python
I keep getting this :
DeprecationWarning: integer argument expected, got float
How do I make this message go away? Is there a way to avoid warnings in Python?
7
votes
10answers
955 views
Why do compilers not warn about out-of-bounds static array indices?
A colleague of mine recently got bitten badly by writing out of bounds to a static array on the stack (he added an element to it without increasing the array size). Shouldn't the compiler catch this …
7
votes
4answers
3k views
What causes javac to issue the “uses unchecked or unsafe operations” warning
For example:
javac Foo.java
Note: Foo.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
6
votes
9answers
572 views
Avoiding unused variables warnings when using assert() in a Release build
Sometimes a local variable is used for the sole purpose of checking it in an assert(), like so -
int Result = Func();
assert( Result == 1 );
When compiling code in a Release build, assert()s are …
6
votes
6answers
2k views
Visual C++: How to disable specific linker warnings?
I'm using a library from CGAL which during the linking stage of my code compilation produces a lot of linking warnings of this form:
warning LNK4099: PDB 'vc80.pdb' was not found with …
6
votes
4answers
873 views
Identifiers for Delphi’s $WARN compiler directive
Delphi has a $WARN compiler directive that allows one to selectively enable or disable specific warnings. The Delphi 2009 help file describes the syntax:
{$WARN identifier ON|OFF}
But it only …
