0
votes
1answer
28 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?
0
votes
1answer
28 views
Non Standard Web Address Format
Hello All,
We sent mails to customers in our application which has a link in it. In yahoo and Hotmail, whenever the customer clicks on the link it displays following warning
The URL is long …
10
votes
17answers
476 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 …
3
votes
5answers
258 views
SnowLeopard Xcode warning: “format not a string literal and no format arguments”
Since upgrading to the latest XCode 3.2.1 and SnowLeopard, I've been getting the warning,
"format not a string literal and no
format arguments"
on the following:
NSError *error = nil;
if …
0
votes
1answer
18 views
-isystem for MS Visual Studio C++ Compiler
I usually like to have a lot of warnings enabled when programming. However, some libraries contains code that easily causes warnings (.., python, Qt, ..). When compiling with gcc I can just use …
1
vote
1answer
71 views
Supressing warnings for a codeblock using gcc 4.1.2?
I have a section of code that uses a Boost library that results in a lot of these type of warning messages:
class x has virtual functions but non-virtual destructor
Using g++ 4.1.2, how do I …
0
votes
2answers
49 views
What is the best solution for suppressing warning from a MS include (C4201 in mmsystem.h)
I am tired of having to look at warnings during our compilations - warnings that come from MS include files.
"C:\Program Files\Microsoft SDKs\Windows\v6.0A\include\mmsystem.h(1840): warning C4201: …
0
votes
3answers
120 views
Why does Perl complain about “Use of uninitialized value” in my CGI script?
I am cleaning my Perl code for production release and came across a weird warning in the Apache error log.
It says:
[Thu Nov 5 15:19:02 2009] Clouds.pm: Use of uninitialized value $name in …
3
votes
2answers
73 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();
…
0
votes
2answers
65 views
Any way to silence the UIDevice setOrientation warning?
Anyone have a simple way to silence the undocumented UIDevice setOrientation warning?
I found this piece of code that silences the undocumented UIPickerView setSoundsEnabled warning.
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 …
4
votes
9answers
479 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 …
0
votes
2answers
39 views
Run nosetests with warnings as errors?
When running nosetests from the command line, how do you specify that 'non-ignored' warnings should be treated as errors?
By default, warnings are printed, but not counted as failures:
…
0
votes
1answer
67 views
Suppressing Objective-C Warnings
Hi all,
Is there any way to suppress Compiler warnings ??
Thanks
1
vote
2answers
75 views
How to deal with -Wconversion warnings from GCC?
I'm building my project with GCC's -Wconversion warning flag. (gcc (Debian 4.3.2-1.1) 4.3.2) on a 64bit GNU/Linux OS/Hardware. I'm finding it useful in identifying where I've mixed types or lost …
