Tagged Questions

1
vote
3answers
49 views

Xcode: Get rid of forward class warning

In Xcode, I have a forward class declared so as to avoid a circular import e.g. @class MyClass; And then I do a method call on that class e.g. [MyClass myMethod]; But I get a forward class …
0
votes
3answers
25 views

Disable HTML Warnings in Eclipse with Eclipise for Java EE developers edition

I am working on a Web App with Eclipse for Java EE. I have JSP files that are built with HTML files as includes. My index.jsp looks like this: <jsp:include page="include/top.html" /> …
4
votes
2answers
98 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(); …
3
votes
5answers
82 views

How to suppress GCC warnings from library headers?

I have a project that uses log4cxx, boost, etc. libraries whose headers generate lots of (repetitive) warnings. Is there a way to suppress warnings from library includes (i.e. #include …
3
votes
6answers
388 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
32 views

DataSet Classes generated by xsd.exe generate a huge number of warnings

I've got several hundred warnings due to missing xml comments from a single DataSet generated from a single .xsd file. Since this is an auto generated file manually editing them isn't a good idea. …
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 …
2
votes
1answer
266 views

How can I suppress individual BizTalk warnings in Visual Studio 2005

We are currently using BizTalk 2006 R2 to build Enterprise Integration solutions. We use BizTalk maps extensively, but when you build a solution in Visual Studio 2005, it produces the following …
0
votes
1answer
25 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
1answer
49 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
34 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 …
0
votes
2answers
71 views

Why does Module::Build’s testcover gives me “use of uninitialized value” warnings?

I'm kinda new to Module::Build, so maybe I did something wrong. Am I the only one who gets warnings when I change my dispatch from "test" to "testcover"? Is there a bug in Devel::Cover? Is there a …
1
vote
2answers
59 views

Compilation resulting in double warnings

I have a WPF project and compilation by Visual Studio/MSBuild seems to do 2 passes, with the latter pass adding some temporary resource files, e.g. csc <options> <files> csc …
0
votes
2answers
591 views

Solution for: Element <element> is not a known element warning in vs2008 when using User controls

I had a VS2008 project that was showing this warning, and I couldn't find a solution anywhere - perhaps my google-fu is weak. In any case, the apparent solution to this is to make sure that the …
1
vote
1answer
82 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 …

1 2 3 4 5 11 next
15 30 50 per page