Tagged Questions
The warnings tag has no wiki summary.
184
votes
9answers
18k views
Virtual member call in a constructor
I'm getting a warning from ReSharper about a call to a virtual member from my objects constructor. Why would this be something not to do?
61
votes
15answers
77k 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 ...
55
votes
19answers
45k 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 ...
55
votes
10answers
13k views
“No newline at end of file” compiler warning
What is the reason for the following warning in some C++ compilers?
No newline at end of file
Why should I have an empty line at the end of a source/header file?
50
votes
2answers
24k views
iPhone OS Memory Warnings. What Do The Different Levels Mean?
Regarding the black art of managing memory on iPhone OS devices: what do the different levels of memory warning mean. Level 1? Level 2? Does the dial go to 11?
Context: After an extensive memory ...
42
votes
4answers
14k views
Warning: Found conflicts between different versions of the same dependent assembly
I am currently developing a .NET application, which consists of 20 projects. Some of those projects are compiled using .NET 3.5, some others are still .NET 2.0 projects (so far no problem).
The ...
41
votes
18answers
4k 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 ...
36
votes
9answers
24k views
Warning: “format not a string literal and no format arguments”
Since upgrading to the latest Xcode 3.2.1 and Snow Leopard, I've been getting the warning
"format not a string literal and no format arguments"
from the following code:
NSError *error = nil;
...
31
votes
3answers
14k views
Selectively disable GCC warnings for only part of a translation unit?
What's the closest GCC equivalent to this MSVC preprocessor code?
#pragma warning( push ) // Save the current warning state.
#pragma warning( disable : 4723 ) // C4723: ...
30
votes
2answers
2k views
Singleton release method produces warning?
In my singleton release method, I have it doing nothing:
-(void) release {
//A whole lot of nothing.
}
But it produces this warning:
Warning: Conflicting distributed object modifiers on return ...
29
votes
4answers
30k 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.
28
votes
7answers
12k 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?
23
votes
6answers
13k views
Disable DTD warning for Ant scripts in Eclipse?
I'm using Eclipse Ganymede. Everything works fine, but I have an anal-retentive yearning for a warning-free Problems tab. Right now it (correctly) complains about my Ant scripts: "No grammar ...
22
votes
3answers
5k views
MIME type warning in chrome for png images
Just ran my site in chrome and suprisingly it comes up with this warning for each of my .png images:
Resource interpreted as image but transferred with MIME type application/octet-stream.
Anyone ...
22
votes
3answers
24k views
Unsafe JavaScript attempt to access frame warning in Safari
I'm using Facebook Connect in my app. I have it working pretty well, but in the Safari Error console, I'm seeing errors like this:
Unsafe JavaScript attempt to access frame with URL http://...#... ...
21
votes
5answers
19k 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 ...
20
votes
1answer
6k views
iPhone apps with a deployment target lower than 4.3 should include an armv6 architecture
I have a problem :-( When I build my application for release XCode shows a warning saying:
iPhone apps with a deployment target lower than 4.3 should include an armv6 architecture (current ...
20
votes
3answers
9k views
What is the list of valid @SuppressWarnings warning names in Java?
What is the list of valid @SuppressWarnings warning names in Java?
The bit that come between the ("") in @SuppressWarnings("").
20
votes
4answers
4k 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 ...
19
votes
2answers
6k views
Java 6: Unsupported @SuppressWarnings(“rawtypes”) warning
I moved to a new machine which has the latest Sun's Java compiler and noticed some warnings in the existing Java 6 code. The Eclipse IDE, suggested that I annotate the assignment with:
...
19
votes
4answers
4k views
iPhone Development - Compiler Warning!
Sometimes when i try to "build"/compile a downloaded source, i get following warning:
ld: warning: directory '/Volumes/Skiiing2/CD/ViewBased/Unknown Path/System/Library/Frameworks' following -F not ...
18
votes
1answer
2k views
Javac: Treat warnings as errors
I have an Ant file that compiles my program. I want the javac task to fail if any warning was reported by the compiler. Any clue on how to do that?
15
votes
1answer
970 views
How can I fix “Freeform Size simulated metrics are not available prior to Xcode 4.2” warnings?
Since a couple of weeks, I've been using XCode 4.2 with projects created with previous XCode 3.x versions.
When creating some custom iPad views, I often use the "freeform" attribute of Interface ...
15
votes
2answers
11k views
Class is a raw type. References to generic type Class<T> should be parameterized
There are lots of threads about this type of question, but I want to get a complete answer and actually understand it without 'hiding' the problem with a @SupressWarnings !
I have the following class ...
15
votes
5answers
17k views
JBoss: What does the warning EJBTHREE-1246 from the InterceptorRegistry mean?
I am currently developing an EJB 3.0 based application on the JBoss AS 5.0.0.GA and just recently the following warning showed up in the server log:
09:50:19,735 WARN [InterceptorsFactory] ...
14
votes
7answers
525 views
C# Compiler should give warning but doesn't?
Someone on my team tried fixing a 'variable not used' warning in an empty catch clause.
try { ... } catch (Exception ex) { }
-> gives a warning about ex not being used. So far, so good.
The fix ...
14
votes
5answers
1k views
How to suppress GCC warnings from library headers?
I have a project that uses log4cxx, boost, etc. libraries whose headers generate lots of (repetitive) warnings. Is there a way to suppress warnings from library includes (i.e. #include ...
14
votes
1answer
3k views
Is there a way to ignore a single FindBugs warning?
With PMD, if you want to ignore a specific warning, you can use // NOPMD to have that line be ignored.
Is there something similar for FindBugs?
14
votes
15answers
867 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 ...
14
votes
12answers
6k views
Best compiler warning level for C/C++ compilers?
What compiler warning level do you recommend for different C/C++ compilers?
gcc and g++ will let you get away with a lot on the default level. I find the best warning level for me is '-Wall'. And I ...
14
votes
9answers
21k views
How do I fix "The expression of type List needs unchecked conversion…'?
In the Java snippet:
SyndFeedInput fr = new SyndFeedInput();
SyndFeed sf = fr.build(new XmlReader(myInputStream));
List<SyndEntry> entries = sf.getEntries();
the last line generates the ...
14
votes
4answers
27k views
Bogus Eclipse warning for web.xml: “No grammar constraints (DTD or XML schema) detected for the document.”
The top of my web.xml file looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
14
votes
8answers
15k views
how can I handle the warning of file_get_contents() function in php?
I wrote a php code like this
$site="http://www.google.com";
$content = file_get_content($site);
echo $content;
but when I remove "http://" from $site I get this warning
Warning:
...
13
votes
2answers
4k views
How to handle the Xcode warning “no previous prototype for function…”?
This warning is popping up a bunch in some third party libraries.
Is there a way to handle it without modifying the code (e.g. ignore the warning)?
If I have to modify the code to fix it how do I do ...
13
votes
2answers
4k views
Can't get rid of “this decimal constant is unsigned only in ISO C90” warning
I'm using the FNV hash as a hashing algorithm on my Hash Table implementation but I'm getting the warning in the question title on this line:
unsigned hash = 2166136261;
I don't understand why this ...
13
votes
1answer
2k views
Apple Interface Builder warning “This windows content rectangle dows not lie entirely on the screen with the menu bar and may not be completely visible for all screen resolutions and configurations.”
A warning comes up in a MainMenu.XIB dialogue box. It says
Object: window(window)
ID: 371
Type: Illegal Configuration
Issue: This windows content rectangle dows not lie entirely on the screen with ...
13
votes
4answers
10k views
Why do I get a warning everytime I use malloc?
If I use malloc in my code:
int *x = malloc(sizeof(int));
I get this warning from gcc:
new.c:7: warning: implicit declaration of function ‘malloc’
new.c:7: warning: incompatible implicit ...
13
votes
3answers
12k views
Use new keyword if hiding was intended
I have the following snippet of code that's generating the "Use new keyword if hiding was intended" warning in VS2008:
public double Foo(double param)
{
return base.Foo(param);
}
The Foo() ...
13
votes
2answers
2k views
Why is it bad to use a iteration variable in a lambda expression
I was just writing some quick code and noticed this complier error
Using the iteration variable in a lambda expression may have unexpected results.
Instead, create a local variable within the loop ...
12
votes
4answers
360 views
When is it OK to use an undefined variable in perl with warnings enabled?
With warnings enabled, perl usually prints Use of uninitialized value $foo if $foo is used in an expression and hasn't been assigned a value, but in some cases it's OK, and the variable is treated as ...
12
votes
4answers
5k views
Java: Thread.currentThread().sleep(x) vs. Thread.sleep(x)
I have this in my code
Thread.currentThread().sleep(x);
Eclipse tells me to use the static
Thread.sleep(x);
instead, why? What's the difference, is there some difference in functionality at all ...
12
votes
2answers
2k views
ReSharper Warning - Access to Modified Closure
I have the following code:
string acctStatus = account.AccountStatus.ToString();
if (!SettableStatuses().Any(status => status == acctStatus))
acctStatus = ACCOUNTSTATUS.Pending.ToString();
...
12
votes
2answers
13k views
alternative to deprecated UITableViewCell setText?
Code in the book Beginning iPhone Development (by Dave Mark & Jeff LaMarche) assigns to the UITableViewCell text property:
UITableViewCell *cell = ...
...
cell.text = ...
This assignment brings ...
12
votes
6answers
2k 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 ...
11
votes
6answers
783 views
Why does perl warn that open my $fh, $file is missing parentheses?
It is my first day to perl, and I find this warning very confusing.
Parentheses missing around "my" list at ./grep.pl line 10.
It seems
open FILE, $file;
works fine.
What is wrong with
...
11
votes
4answers
1k views
How can I resolve this case of `Useless use of a variable in a void context`?
How can I resolve this case of Useless use of a variable in a void context?
For example:
my $err = $soap_response->code, " ", $soap_response->string, "\n";
return $err;
I get warnings ...
11
votes
17answers
575 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 ...
11
votes
5answers
7k views
How to avoid unchecked-conversion-warning in Java, if you use legacy libraries?
I like the generics-feature in java and use it often. But I have a problem, if I use libraries that aren't yet aware of generics. An example are servlets. If you use ServletRequest.getParameterMap() ...
11
votes
11answers
3k views
Should I disable the C compiler signed/unsigned mismatch warning?
The Microsoft C compiler warns when you try to compare two variables, and one is signed, and the other is unsigned. For example:
int a;
unsigned b;
if ( a < b ) { // warning C4018: '<' ...
10
votes
2answers
2k views
'-respondsToSelector:' not found in protocol(s)
Hello i have received this message ever since i started building my first iphone program several months ago. I check if a delegate implements a given method. It works but I get this warning. How can i ...