A warning-level error message thrown by a compiler indicates a piece of code which the compiler recognizes as being potentially a problem, but which is syntactically correct such that the compiler is able to continue.
354
votes
11answers
36k 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?
120
votes
20answers
89k 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 ...
104
votes
15answers
113k 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 ...
100
votes
5answers
31k 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 ...
95
votes
5answers
27k 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 ...
81
votes
10answers
23k 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?
70
votes
3answers
39k 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 ...
63
votes
10answers
46k 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;
...
61
votes
4answers
64k 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.
57
votes
3answers
29k 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("").
55
votes
2answers
8k views
“sending 'const NSString *' to parameter of type 'NSString *' discards qualifiers” warning
I have Constants NSString, that I want to call like:
[NewString isEqualToString:ConsString];
Any wrong code here?
I got this warning:
sending 'const NSString *' to parameter of type 'NSString ...
51
votes
3answers
28k 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: ...
50
votes
18answers
5k 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 ...
50
votes
2answers
4k 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 ...
45
votes
4answers
12k views
remove unused import from eclipse
Is there any way to automatic remove all unused import (signaled with a warning) of a project with Eclipse IDE?
43
votes
6answers
36k 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 ...
41
votes
7answers
20k 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?
41
votes
6answers
18k 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 ...
40
votes
1answer
6k 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 ...
39
votes
9answers
39k 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:
...
39
votes
1answer
9k 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?
37
votes
9answers
40k 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 ...
36
votes
4answers
7k views
Suppressing deprecated warnings in Xcode
With all the SDKs floating around, it's handy to be able to build for multiple SDKs and platforms. However, bouncing from 3.2 to 3.0 and even occasionally 2.x, I frequently get deprecated warnings ...
36
votes
2answers
25k 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 ...
35
votes
2answers
5k 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 ...
32
votes
3answers
11k 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 ...
32
votes
3answers
19k views
Resolving LNK4098: defaultlib 'MSVCRT' conflicts with
This warning:
LINK : warning LNK4098: defaultlib 'MSVCRT' conflicts
with use of other libs; use /NODEFAULTLIB:library
is a fairly common warning in Visual Studio> I'd like to understand the exact ...
31
votes
5answers
19k 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 ...
31
votes
4answers
7k views
Xcode build warning - Target Integrity - Provisioning profile is expiring only for the ProjectnameTests Target
All my apps that i've created so far do this. It does nothing to the app or being able to run it but it's just annoying always having that 1 warning.
I'm Using
Xcode 4.2
OSX 10.7.3
This is the ...
30
votes
1answer
6k views
Xcode 4. How to suppress all warning in specific source file?
In my application I use 3rd party code that triggers some warnings. I reviewed them and they can be safely ignored.
Now I want to "mark" a file somehow, so Xcode won't show any warnings for the code ...
30
votes
2answers
4k views
Why is it bad to use an 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 ...
29
votes
3answers
41k views
'Missing contentDescription attribute on image' in XML
I get an warning about [Accessibility]Missing contentDescription attribute on image in eclipse. This warning show at line 5 (declare ImageView) in XML code below.
This not make any error when build ...
29
votes
4answers
7k 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 ...
28
votes
4answers
12k views
gcc warning" 'will be initialized after'
I am getting a lot of these warnings from 3rd party code that I cannot modify.
Is there a way to disable this warning or at least disable it for certain areas (like #pragma push/pop in VC++)?
...
28
votes
3answers
31k 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://...#... ...
27
votes
4answers
5k 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 ...
27
votes
2answers
382 views
Python 3: Catching warnings during multiprocessing
Too long; didn't read
The warnings.catch_warnings() context manager is not thread safe. How do I use it in a parallel processing environment?
Background
The code below solves a maximization problem ...
26
votes
4answers
6k views
XCode 4 warning "Expression result unused” for NSURLConnection
I'm just trying to do my usual data transfert. I define my NSMutableURLRequest then call
[[NSURLConnection alloc] initWithRequest:request delegate:self];
This used to be ok with Xcode 3 but Xcode 4 ...
26
votes
4answers
16k 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 ...
26
votes
1answer
16k 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 ...
25
votes
9answers
13k views
How do I best silence a warning about unused variables?
I have a cross platform application and in a few of my functions not all the values passed to functions are utilised. Hence I get a warning from GCC telling me that there are unused variables.
What ...
24
votes
1answer
4k 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?
23
votes
4answers
19k 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 ...
23
votes
6answers
39k 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"
...
23
votes
2answers
13k 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:
...
22
votes
2answers
4k views
'-respondsToSelector:' not found in protocol(s)
I have received this message ever since I started building my first iPhone program several months ago.
I want to check if a delegate implements a given method. It works but I get this warning.
How ...
22
votes
6answers
21k views
How can I hide “defined but not used” warnings in GCC?
I have a bunch of compile time asserts, such as:
CASSERT(isTrue) or CASSERT2(isTrue, prefix_)
When compiling with GCC I get many warnings like 'prefix_LineNumber' defined but not used. Is there a ...
22
votes
6answers
50k views
how to remove warning messages in php?
i have a php code, when i run it, a warning appears in the page
how can i remove warning messages? and ignore them
22
votes
3answers
25k 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() ...
21
votes
4answers
3k views
Flags to enable thorough and verbose g++ warnings
Often in C under gcc, I will start with the following set of warning flags (painfully assembled from multiple sources):
-Wall -Wextra -Wformat-nonliteral -Wcast-align -Wpointer-arith ...