0
votes
1answer
25 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 …
1
vote
1answer
68 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
1answer
17 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 …
0
votes
2answers
46 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
2answers
37 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:
…
3
votes
2answers
70 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
1answer
51 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=20060613, debug=0, …
0
votes
2answers
58 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.
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 …
0
votes
3answers
117 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
5answers
234 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
25 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 turns out to be …
0
votes
1answer
66 views
Suppressing Objective-C Warnings
Hi all,
Is there any way to suppress Compiler warnings ??
Thanks
1
vote
2answers
72 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 …
0
votes
1answer
33 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.
