2
votes
3answers
112 views
suppresing output to console with ruby
Hello,
I am writing some unit tests in ruby and have tests like the following:
def executing_a_signal
a_method(a_signal.new, a_model, a_helper);
assert_equal(new_state, …
0
votes
4answers
469 views
SunStudio C++ compiler pragma to disable warnings?
The STLport bundled with the SunStudio11 generates alot of warnings. I beleive most compilers have a way to disable warnings from certain source files, like this:
Sun C
#pragma e …
0
votes
1answer
115 views
Trying to supress resource warning in Visual Studio
I want to suppress the "The resource name 'X.Y' is not a valid identifier" warnings in Visual Studio 2008.
I cannot find the warning number to supress it in the project's properti …
0
votes
6answers
86 views
PHP function is_nan() throws a warning for strings
I've been using the is_nan() function (ie: is-not-a-number) to check whether a variable taken from the querystring is a number or not. However, in the case of the variable being a …
3
votes
2answers
489 views
Class is a raw type. References to generic type Class<T> should be parameterized
There are lots of threads about this type of question, but I want to get a complete answer and actually understand it without 'hiding' the problem with a @SupressWarnings !
I have …
0
votes
2answers
186 views
How does one disable deprecated warnings in Flex 3?
I've recently started working with an application written using Adobe Flex 3. We're using several deprecated functions and unfortunately we can't remove these dependencies.
The d …
2
votes
2answers
283 views
How to exclude MFC code from VS2008 Code Analysis
I have a C++/CLI project that uses CWinFormsControl and CWinFormsView to create .NET controls in my MFC views. To do this I need to #include "afxwinforms.h".
When I run Code Analy …
0
votes
1answer
99 views
How do I suppress T-SQL warnings when running a script SQL Server 2005?
Is it possible to suppress warnings generated by T-SQL scripts? If so, how?
I know I can turn of the 'records affected' messages with
SET NOCOUNT ON
but is there an equivalent …
1
vote
2answers
95 views
Why does @SuppressWarnings break my code?
Got this idea from this previous question.
http://stackoverflow.com/questions/529085/java-how-to-generic-array-creation
Anyway, my code is like this:
public class Slice<E> …
5
votes
3answers
830 views
What is the list of valid @SuppressWarnings warning names in Java?
What is the list of valid @SuppressWarnings warning names in Java?
The bit that come between the ("") in @SuppressWarnings("").
0
votes
2answers
143 views
How to Disable a warning across projects in Visual Studio
I know this sounds bad but how can I disable/suppress a specific warning for all the projects in a solution. All of my projects are VC++ projects. Is it possible? If yes, how can t …
2
votes
4answers
242 views
How to suppress Java warnings for specific directories or files such as generated code
I'm using a parser generator that creates somewhat ugly code. As a result my Eclipse project has several dozen warnings emanating from generated source files. I know I can use the …
3
votes
3answers
350 views
Eclipse - @SuppressWarnings(”javadoc”) does not work
Hi,
I have my Eclipse configured to show warnings on missing javadoc comments and tags for public elements. That comes very usefull for me in order to keep my code well documented …
3
votes
4answers
1k views
How to suppress JAVA compiler warnings for specific functions
We are always taught to make sure we use a break in switch statements to avoid fall-through.
The JAVA compiler warns about these situations to help us not make trivial (but drasti …
0
votes
2answers
248 views
How can I inhibit warning 4200 in Visual Studio 2005?
I can inhibit many warnings in Visual Studio 2005 SP1 in the C/C++ Advanced property page, which causes the IDE to use the /wd switch on the command line which invokes the compiler …
