Compilers and interpreters commonly warn about miscellaneous conditions. Suppressing some or all of those warnings may help to reduce the 'noise' a compiler emits.
0
votes
1answer
10 views
Is is possible to disable this warning in clang? warning: #pragma once in main file
warning: #pragma once in main file
We're running our headers through clang to get a partial AST.
Is it possible to disable that warning? I've had little success on my own.
Cheers
/ kyle
0
votes
1answer
46 views
Do not log supressed PHP Warning
Is there any way to find out if this warning was supressed or not using the set_error_handler() function? The code is 2 for @somethingwrong() and somethingwrong(). But I don't want to log all ...
1
vote
0answers
103 views
@SafeVarargs and Java 6 interoperability
I have a method with a generic varargs parameter in my API. I want my API to be Java 6 source and binary compatible, but it would be nice if Java 7 API consumers wouldn't suffer from unnecessary ...
0
votes
1answer
32 views
How to supress warning for “Deleted feature: PAUSE statement” in gfortran?
I googled it but i could not find the answer. How can I suppress this warning AND ONLY THIS:
Warning: Deleted feature: PAUSE statement at (1)
i know I can supress all the warning but I wanna ...
4
votes
2answers
65 views
Suppress the “unused” warning for a method, but not the variables within it
As the title asks, how do I suppress the warning for just the method? Is this possible?
A little background: I'm using a JavaScript bridge and it hooks into these methods, so I'd like to suppress ...
10
votes
2answers
188 views
Disable warning/error for default warnings
We want to start using -Wall -Werror on a large project.
Due to the size, this change has to be phased, and we want to start with the most important warnings first.
The best way to do it seems to be ...
0
votes
2answers
52 views
Unused parameters in Java
If one has no intention of using a parameter in C++, one simply omits the name of the variable but keeps the type in the function declaration. Doing so is a light-weight method to signal to the ...
-1
votes
1answer
58 views
How can you suppress SyntaxWarning in Python?
How can you suppress SyntaxWarning in Python ?
Here's the line of code that generates the warning.
def myfunction():
from myimportfile import *
Please Note:
Importing the file outside ...
1
vote
1answer
24 views
PMD-Eclipse: How to set suppressmarker?
As the PMD docs say,
you can tell PMD to ignore a specific line by using the "NOPMD" marker
but
you can use whatever text string you want to suppress warnings
by using the command-line ...
0
votes
1answer
45 views
How to turn off specific errors in Xcode?
Is there a way to selectively turn off specific errors in Xcode?
Specifically, I want to turn off the following errors
Use of undeclared identifier..
No visible @interface for ... declares the ...
0
votes
1answer
72 views
How to suppress Pandas Future warning ?
When I run the program, Pandas gives 'Future warning' like below every time.
D:\Python\lib\site-packages\pandas\core\frame.py:3581: FutureWarning: rename with inplace=True will return None from ...
0
votes
1answer
59 views
@SupressWarnings for the invocation of the varargs with un-cast null
What string should I use in @SuppressWarnings("....") to remove the warning I get in this unit test of a method with varargs:
/**
* Calling {@link #readFiles(String, String...)} with just one arg ...
0
votes
3answers
51 views
suppress shell script error messages
In my shell script I got these lines:
rm tempfl.txt
rm tempfl2.txt
If these do not exist I get the error messages
rm: tempfl2.txt: No such file or directory
rm: tempfl.txt: No such file or directory
...
1
vote
0answers
90 views
CMake (cotire) precompiled headers and disable warnings
I'm using cotire(https://github.com/sakra/cotire) plugin for CMake, which handles several nice things related to compilation speedup(for example precompiled headers).
The problem is that I include ...
0
votes
0answers
38 views
Suppress anonymous structs warning with Clang - “-fms-extensions” doesn't work
I have an Xcode project that I compile with Clang using some 3rd party library with Visual Studio C code.
In the 3rd party library anonymous structs are used in header files (I can't really change ...
1
vote
1answer
121 views
How to resolve “Main module of program is empty: nothing will happen when it is run”
I have two projects in an F# solution.
1. main project with [EntryPoint] and set as the StarUp project.
2. support, the second project, holds a group of support modules. I.e. they are only called and ...
0
votes
1answer
96 views
Ignoring a “Property type is incompatible with type inherited from” warning in Objective-C
In a subclass, I'm overriding the type of a property to be a subclass of that property, which works like this:
ClassA: NSObject
@property (nonatomic) NSValue *value;
ClassB : ClassA
@property ...
0
votes
1answer
943 views
How to export JSP table to EXCEL (XLSX Format)
<%@ page language="java" contentType="application/vnd.ms-excel"%>
<% response.setHeader("Content-Disposition:","attachment;filename=Sample.xls"); %>
<TABLE>
...
1
vote
1answer
176 views
Stylecop Suppress errors for Reference.cs file
I have just asked a similar question regarding auto generated code from Service References and Xml summary errors. An answer was posted suggesting that I could add the Service Reference into its own ...
3
votes
2answers
221 views
Suppress Xml warning for ServiceReference .cs file
Working with MVC4 and VS2012, I am using a Service Reference, which auto generates a Reference.cs file. When I build, I get dozens of warnings as errors that read
'Missing XML comment for ...
9
votes
3answers
198 views
Suppress “Member is never assigned to” warning in C#
I have the following code:
ViewPortViewModel _Trochoid;
public ViewPortViewModel Trochoid
{
get { return _Trochoid; }
set { this.RaiseAndSetIfChanged(value); }
}
using ReactiveUI INPC ...
1
vote
1answer
325 views
FxCop behavoir in VS2010, Code Analysis, and SuppressMessage
I have a class like this one:
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "Io")]
public void ...
0
votes
1answer
93 views
How to suppress D9025 warning in Microsoft C++ build tools
I am compiling a library with Microsoft C++ compiler and build tools. My build environment sets the compile flag /GL, but for a specific library I need to turn that flag off. I can do so with /GL-, ...
0
votes
0answers
30 views
CodeAnalysis.SupperssMessage is not working to suppress compilation warnings
following is the code which i am using to suppress the compilation warnings.
[assembly:
System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming",
...
0
votes
2answers
224 views
How to suppress FindBugs warnings for fields or local variables
I would like to suppress FindBugs warnings for specific fields or local variables. FindBugs documents that the Target can be Type, Field, Method, Parameter, Constructor, Package for its ...
0
votes
2answers
291 views
How to disable python warnings
I am working with code with throws a lot of (for me at the moment) useless warnings using the warnings library. Reading (/scanning) the documentation I only found a way to disable warnings for single ...
4
votes
2answers
258 views
Dynamic forwarding: suppress Incomplete Implementation warning
I have a class exposing some methods, whose implementation is provided by an inner object.
I'm using forward invocation to dispatch at runtime the method calls to the inner object, but XCode is ...
3
votes
1answer
255 views
Partially disable pedantic warnings in gcc within source
I am trying to get gcc to shut up about my usage of binary constants. They make the code more readable, but prevent me from using -pedantic which I comply with otherwise. I would either like to have a ...
1
vote
1answer
43 views
Filtering rules based on functionality
I am pretty sure what I am about to ask is not possible, but I am hoping experts on Code Analysis may be able to suggest a workaround.
I am trying to find a way to exclude Code Analysis warning in ...
4
votes
1answer
297 views
How to make Qt GUI apps in C++ without memory leaks
I haven't been able to create a Qt GUI app that didn't have over 1K 'definitely lost' bytes in valgrind. I have experimented with this, making minimal apps that just show one QWidget, that extend ...
2
votes
2answers
120 views
Suppressing Grails Plugin WARN messages for Deprecated Behavior
We use quite a few Grails plugins for our application and apparently some of them are still using the deprecated ApplicationHolder.getApplication(). I can't seem to determine which ones are ...
0
votes
2answers
93 views
How to disable a specific IBM XL C++ compiler warning?
Given tmp.cpp:
#include <stdio.h>
#pragma report(disable, CCN8826)
int main(int argc, const char *argv[])
{
const char * hi = "hi\n";
printf(hi);
return 0;
}
Despite I use ...
8
votes
4answers
332 views
Java generics SuppressWarnings(“unchecked”) mystery
Why does code alternative(1) compile without warnings, and code alternative(2) produce an "unchecked cast" warning?
Common for both:
class Foo<T> {
Foo( T [] arg ) {
}
}
Alternative ...
3
votes
3answers
292 views
Disable/supress warning CS0649 in C# for a specific field of class
I have some fields in a C# class which I initialize using reflection. The compiler shows CS0649 warning for them:
Field foo' is never assigned to, and will always have its default
valuenull' ...
1
vote
3answers
176 views
Ant compiler warnings for specific class file
I want to ignore warnings from ant which are thrown by an specific file.
It is not mandatory why there are warnings i only want to find a way that any ignore the warnings form an specific class ...
8
votes
3answers
509 views
Create a Java Annotation with IDE contextual behaviour
I've created an Annotation
/**
* Highlights this method is declared in XML
*/
public @interface FromXML {
}
I'm using this on methods that look like this:
@FromXML
public void ...
0
votes
1answer
69 views
Stopping error messages from appearing in terminal
I am executing a command in terminal which is
cvlc song.amr
Problem is though the song is being played, I am getting some message after I am executing the instruction. The message is
VLC media ...
1
vote
1answer
105 views
@SuppressWarnings value when having an Annotation as superinterface
I have an enum which implements an Annotation and I'm getting the warning:
The annotation type A should not be used as a superinterface for MyClass.
Is there a value for @SuppressWarnings which ...
0
votes
1answer
431 views
How to suppress PMD warnings during a Maven install
I have a Java project that is built using Maven, thus my build process is defined in the pom.xml file of the project. My development team uses a variety of plugins to check the quality of our source ...
2
votes
1answer
1k views
Combining multiple @SuppressWarnings annotations - Eclipse Indigo
So the issue is being able to combine multple warning suppressions so that each item doesn't need it's own @SuppressWarnings annotation.
So for example:
public class Example
public Example() {
...
1
vote
3answers
110 views
Why doesn't try-catch resolve the warning in unchecked generics casts?
I have the following code in my program:
public class MyClass {
private LinkedList<Foo> myList = new LinkedList<Foo>();
// Some irrevelant stuff which includes loading myList
...
0
votes
0answers
204 views
Suppress -Wunknown-pragmas warning in GCC
I try to ignore warnings coming from some 3rd party header files like this:
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunknown-pragmas"
#pragma GCC diagnostic ignored "-Wreorder"
...
1
vote
1answer
610 views
How to suppress the proprietary API warning for sun.reflect.Reflection? [duplicate]
Possible Duplicate:
Cannot stop ant from generating compiler warnings
How to suppress this warning:
sun.reflect.Reflection is Sun proprietary API and may be removed in a future release
...
1
vote
0answers
110 views
Suppress GUID Warnings as a Result of mt.exe Post-Build Event
Within a large, pre-existing codebase, I have several *.dll's which I need to register with COM interop.
These manifest registrations are being performed as post-build events using mt.exe in the ...
0
votes
3answers
500 views
How to configure pylint in the python source
Is it possible to disable certain pylint errors/warnings in the python source code itself ?
1
vote
1answer
248 views
How to disable warning: null character(s) preserved in literal?
Basically I want to ignore warnings about null-chars in literals.
GCC says that this warning is enabled by default.
I can't find an appropriate -Wno- option for this warning.
You get such warnings ...
1
vote
1answer
1k views
disable warning c4702 seems not work for VS 2012
I have some code for testing that i added upfront the rest of the code, so the rest would never be reached in the test.
Since i have warning level 4 set, this results in an c4702: unreachable-code ...
1
vote
3answers
552 views
cross platform macro for silencing unused variables warning
In porting a large piece of C++ code from Visual Studio (2008) to Xcode (4.4+), I encounter lines such as:
UNUSED_ALWAYS(someVar);
the UNUSED_ALWAYS(x) (through UNUSED(x)) macro expands to x which ...
0
votes
1answer
753 views
How to eliminate the “discard qualifier” warning?
Using GCC and C99 mode, I have a function declared as:
void func(float *X);
When I call the function, I use a volatile array Y:
volatile float Y[2];
int main()
{
func(Y);
return 0;
}
...
1
vote
0answers
129 views
How to suppress warnings for file included from header
I use GCC -Weffc++ option in my Qt project. To suppress warnings from Qt headers i add QMAKE_CXXFLAGS += -isystem $(QTDIR)\include.
But this doesn't suppress all warnings, i still get annoying ...
