10
votes
17answers
425 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.. …
3
votes
2answers
46 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.Pen …
0
votes
3answers
77 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 val …
0
votes
2answers
33 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 warni …
2
votes
4answers
61 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 …
0
votes
1answer
18 views
How to get rid of these warnings after installing zend core?
Really annoying!
PHP Warning: PHP Startup: bcmath: Unable to initialize module
Module compiled with module API=20060613, debug=0, thread-safety=0
PHP compiled with module API= …
0
votes
1answer
13 views
Remove warning in MyEclipse
How can I modify the conditions for which MyEclipse will throw up warning flags? I'd be happy to hear a generic solution, but here is my specific problem for the curious/if it tur …
0
votes
1answer
57 views
Suppressing Objective-C Warnings
Hi all,
Is there any way to suppress Compiler warnings ??
Thanks
1
vote
2answers
56 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 …
0
votes
1answer
25 views
mysql command line. Empty set, 1 warning (0.01 sec)
How do i view the warning(s) after a SELECT query? The results of one query is
Empty set, 1 warning (0.01 sec)
I am using mysql via command line on linux.
4
votes
9answers
445 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 unus …
8
votes
2answers
163 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';
…
0
votes
2answers
29 views
Bison build warning: “-s option given but default rule can be matched”
I get the warning
warning, -s option given but default rule can be matched
if you google
option given but default rule can be matched
You'll get results of flex homepage and …
5
votes
1answer
42 views
warnings::warn and FATAL categories in Perl
I must be understanding the warnings documentation wrong. The way I read it, this code:
use warnings;
use warnings FATAL => 'all';
warnings::warn('numeric', 'blarg');
print "f …
2
votes
5answers
134 views
How to define (non-method) functions in header libraries
When writing a header library (like Boost), can one define free-floating (non-method) functions without (1) bloating the generated binary and (2) incurring "unused" warnings?
When …
