1
vote
1answer
63 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. …
10
votes
17answers
470 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.. …
2
votes
5answers
159 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
2answers
41 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 …
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 …
0
votes
3answers
107 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 …
3
votes
2answers
62 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
2answers
34 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 fail …
0
votes
2answers
47 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 …
0
votes
1answer
62 views
Suppressing Objective-C Warnings
Hi all,
Is there any way to suppress Compiler warnings ??
Thanks
0
votes
1answer
23 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
37 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= …
1
vote
2answers
68 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 …
4
votes
9answers
464 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 …
3
votes
4answers
435 views
Disable Flex CSS type selector warning?
I'm building a somewhat large Flex project that includes several modules (a single Flex project that produces multiple SWFs)
Right now, I have a single css file, being loaded in t …
