The compiler-warnings tag has no wiki summary.
33
votes
7answers
5k views
Custom Compiler Warnings
When using the ObsoleteAtribute in .Net it gives you compiler warnings telling you that the object/method/property is obsolete and somthing else should be used. I'm currently working on a project that ...
24
votes
3answers
374 views
+50
Does there exist a static_warning?
I'm aware of this question which mentions Boost's "STATIC WARNING", but I'd like to ask again, specifically, how I could implement a static_warning which operates similarly to static_assert but only ...
23
votes
7answers
690 views
How to overcome pointless C++ compiler warnings elegantly?
This question is not bound to any specific compiler warning, the following is just an example.
Currently when I want a loop that checks an exit condition inside:
while( true ) {
doSomething();
...
20
votes
3answers
9k 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("").
15
votes
6answers
554 views
Initialise string function result?
I've just been debugging a problem with a function that returns a string that has got me worried. I've always assumed that the implicit Result variable for functions that return a string would be ...
15
votes
7answers
2k views
How to intentionally cause a custom java compiler warning message?
I'm about to commit an ugly temporary hack in order to work around a blocking issue while we wait for an external resource to be fixed. Aside from marking it with a big scary comment and a bunch of ...
14
votes
3answers
219 views
What Scala annotations modify the compiler's messages?
I know about two:
@deprecated("use blabla instead") is used to add an explanation to the warning output by the compiler when the annotated definition is used in client code.
@implicitNotFound(msg = ...
14
votes
3answers
2k views
How to detect unused methods and #import in Objective-C
After working a long time on an iPhone app, I realized that my code it's quite dirty, containing several #import and methods that are not called or useful at all.
I would like to know if there's any ...
14
votes
3answers
6k views
Using enum inside types - Compiler warning C4482 C++
I am using fully qualified name of the enum inside a method in one of my class. But I am getting compiler warning which says "warning C4482: nonstandard extension used: enum 'Foo' used in qualified ...
13
votes
4answers
4k views
C# Compiler Warning 1685
So, (seemingly) out of the blue, my project starts getting compiler warning 1685:
The predefined type
'System.Runtime.CompilerServices.ExtensionAttribute'
is defined in multiple assemblies in
...
12
votes
8answers
1k views
C/C++: How to use the do-while(0); construct without compiler warnings like C4127?
I'm often use do-while(0) construct in my #defines, for the reasons described in this answer. Also I'm trying to use as high as possible warning level from compiler to catch more potential problem and ...
11
votes
2answers
464 views
Will a “variableName;” C++ statement be a no-op at all times?
In C++ sometimes a variable will be defined, but not used. Here's an example - a function for use with COM_INTERFACE_ENTRY_FUNC_BLIND ATL macro:
HRESULT WINAPI blindQuery( void* /*currentObject*/, ...
10
votes
4answers
200 views
g++ warning when using optional 'struct' keyword
If I write this program:
#include <iostream>
namespace foo {
struct bar {
int x;
};
}
int main (void) {
struct foo::bar *a = new struct foo::bar;
delete a;
return ...
10
votes
5answers
308 views
Is there a workaround for this C4702 link-time warning?
I'm using boost::variant and am having trouble compiling in release mode. I am working in VC2010 with warning level 4 and warnings as errors. The code below compiles fine in debug mode, but in release ...
10
votes
4answers
1k views
Disable GCC “may be used uninitialized” on a particular variable
I'm getting this warning on a stack variable:
warning: object.member may be used uninitialized in this function
In this case I do not wish to force initialization to just to get rid of the warning ...
9
votes
4answers
198 views
Is this hack to remove aliasing warning UB?
We just upgraded our compiler to gcc 4.6 and now we get some of these warnings. At the moment our codebase is not in a state to be compiled with c++0x and anyway, we don't want to run this in prod (at ...
9
votes
4answers
294 views
Compiler warning “return value might be undefined”
I often use code along the lines of:
function GetNumber(Handle : THandle) : Integer;
begin
FLock.BeginRead;
try
if FMap.TryGetValue(Handle, Object) then
raise EArgumentException.Create('Invalid ...
9
votes
2answers
149 views
Is there an equivalent of gcc's -Wshadow in visual C++
-Wshadow will "Warn whenever a local variable shadows another local variable.". Is there an equivalent in Visual C++ (2008)? I tried /W4 but it didn't pick up on it. I also tried Cppcheck but that ...
9
votes
6answers
10k views
How can I hide “defined but not used” warnings in GCC?
I have a bunch of compile time asserts, such as:
CASSERT(isTrue) or CASSERT2(isTrue, prefix_)
When compiling with GCC I get many warnings like 'prefix_LineNumber' defined but not used. Is there a ...
8
votes
3answers
123 views
Strange warning behavior with gcc and signed/unsigned comparisons
I have the following code :
unsigned int a;
if (a > numeric_limits<int>::max())
do_stuff();
When compiling, gcc complains about
warning: "comparison between signed and unsigned"
...
8
votes
1answer
195 views
Delphi compile-time integer conversion warnings?
In Delphi XE or 2006, is there any way to detect at compile time that implicit conversions between integer types may lose data? I realize it's possible to detect this with runtime checking. I would ...
8
votes
4answers
253 views
Are there real life cases when C4930 Visual C++ warning doesn't indicate an error?
Visual C++ can emit C4930 "unused function prototype" warning in the following case:
void SomeUsefulFunction()
{
SomeResourceLock lock(); //C4930 - unused function prototype
//code requiring ...
8
votes
5answers
518 views
Impact on style of GHC -Wall
It is considered good practice to enable GHC warnings with -Wall. However, I've found out that fixing those warnings has a negative effect for some types of code constructs.
Example 1:
Using the ...
8
votes
3answers
844 views
How to disable GCC warnings for a few lines of code
In Visual C++, it's possible to use #pragma warning (disable: ...). Also I found that in GCC you can override per file compiler flags. How can I do this for "next line", or with push/pop semantics ...
8
votes
5answers
801 views
Avoiding “variable might not have been initialized”
I recently ran across a routine that looks something like this:
procedure TMyForm.DoSomething(list: TList<TMyObject>; const flag: boolean);
var
local: integer;
begin
if flag then
//do ...
8
votes
1answer
683 views
C++ - gcc - how to create my own custom compile warnings similar to printf()?
apologies in advance if i use poor terminology.
when i compile a C++ app under gdb and use printf() it gives me awesome warnings relating to the consistency of the format string and the arguments ...
8
votes
7answers
622 views
C#: writing MSIL to add a preprocessor directive
Is it possible in C# to write MSIL code that will add a preprocessor directive to the code, e.g., #warning, if a certain condition is met? Or maybe this can be done with reflection, I don't know.
...
8
votes
5answers
9k views
Java Class.cast() vs. cast operator
Having being taught during my C++ days about evils of the C-style cast operator I was pleased at first to find that in Java 5 java.lang.Class had acquired cast method.
I thought that finally we have ...
8
votes
4answers
905 views
Why compiler is not giving error when signed value is assigned to unsigned integer? - C++
I know unsigned int can't hold negative values. But the following code compiles without any errors/warnings.
unsigned int a = -10;
When I print the variable a, I get a wrong value printed. If ...
8
votes
5answers
7k views
Visual Studio warning level meanings?
On the build tab in a Web Application project I have a setting called "Warning Level". I can set a value from 0 to 4. What do these values mean? Will a value of 0 be more strict and generate more ...
7
votes
2answers
113 views
Why is there no warning like C4738 for double?
Visual C++ can emit C4738 warning:
storing 32-bit float result in memory, possible loss of performance
for cases when a 32-bit float is about to be stored in memory instead of being stored in a ...
7
votes
2answers
84 views
warning about ambiguous for ofstream, but not for ostream. What's the difference?
This is not important. But I'm curious as to when this warning appears. My real question is why ostream and ofstream are treated differently.
struct Test {
int y;
Test(int k) : y(k) {}
};
...
7
votes
3answers
184 views
Why does GCC warn against this implicit conversion?
GCC warns me that the following piece of code contains an implicit conversion that may change a value:
#include <stdlib.h>
float square = rand();
However, the following does not yield any ...
7
votes
3answers
151 views
Disabling “bad function cast” warning
I'm receiving the following warning:
warning: converting from 'void (MyClass::*)(byte)' to 'void (*)(byte)'
This is because I need to pass as argument a member function instead of an ordinary ...
7
votes
2answers
205 views
Why this erasure warning with member variables declared as a tuple?
Have a look at this Scala class:
class Example {
val (x, y): (Int, Int) = (1, 2)
}
Compiling this results in a warning:
Example.scala:2: warning: non variable type-argument Int in type pattern
...
7
votes
1answer
268 views
Delphi 2010 compiler warning about instantiation of abstract class should be a compiler error
Is there any compiler options that let the compiler give me an error instead of a warning when i instantiate an abstract class?
Foo = class
procedure Bar; virtual; abstract;
end;
var
f : ...
7
votes
3answers
126 views
GCC does not warn when using == op with a signed var and an unsigned literal
Why does GCC warn only for situations 1 and 3 and not 2 in the code below ?
I'm compiling with -Wall and -g flags.
int main() {
unsigned int ui = 4;
int si = 6;
if (si == ui ) { // ...
7
votes
2answers
169 views
Why is there a warning on this Java generic method definition?
I noticed that if I use generics on a method signature to accomplish something similar to co-variant return types, it works like I think it would, except it generates a warning:
interface Car {
...
7
votes
4answers
1k views
Is using #pragma warning push/pop the right way to temporarily alter warning level?
Once in a while it's difficult to write C++ code that wouldn't emit warnings at all. Having warnings enabled is however a good idea. So it is often necessary to disable warnings around some specific ...
7
votes
5answers
1k views
Avoid warning 'Unreferenced Formal Parameter'
I have a super class like this:
class Parent
{
public:
virtual void Function(int param);
};
void Parent::Function(int param)
{
std::cout << param << std::endl;
}
..and a ...
7
votes
5answers
270 views
Can C# compiler be configured to give warning when explicit cast may cause data loss?
Is there a way to configure the VS2008 C# compiler to give a warning for code like this:
Int64 x = 123456789000;
Int32 y = (Int32)x;
7
votes
8answers
640 views
Is it problematic to assign a new value to a method parameter?
Eclipse has an option to warn on assignment to a method's parameter (inside the method), as in:
public void doFoo(int a){
if (a<0){
a=0; // this will generate a warning
}
// do ...
7
votes
4answers
1k views
Boolean expression order of evaluation in Java?
Suppose I have the following expression
String myString = getStringFromSomeExternalSource();
if (myString != null && myString.trim().length() != 0) {
...
}
Eclipse warns me that myString ...
7
votes
7answers
640 views
Is there a way to get VS2008 to stop warning me about unreachable code?
I have a few config options in my application along the lines of
const bool ExecuteThis=true;
const bool ExecuteThat=false;
and then code that uses it like
if(ExecuteThis){ DoThis(); }
...
7
votes
5answers
365 views
Why this warning from IBM XL C/C++ compiler?
Here's a minimum code example that illustrates the problem:
#include <iostream>
class Thing
{
// Non-copyable
Thing(const Thing&);
Thing& operator=(const Thing&);
int ...
7
votes
4answers
6k views
How can I suppress javac warnings about deprecated api?
When I compile, javac outputs:
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.`
I wish to suppress this warning. Trying -Xlint:none ...
7
votes
4answers
2k views
C++ Boost: what's the cause of this warning?
I have a simple C++ with Boost like this:
#include <boost/algorithm/string.hpp>
int main()
{
std::string latlonStr = "hello,ergr()()rg(rg)";
...
7
votes
3answers
3k views
C#: Is pragma warning restore needed?
From msdn I get this:
#pragma warning disable warning-list
#pragma warning restore warning-list
In the examples, both disable and restore are used. Is it necessary to restore if I want it disabled ...
7
votes
5answers
2k views
Making GCC and Other C++ Compilers Very Strict
I'm working on a large collaborative C++ project that is both developed and run on various flavors of Linux, OS X and Windows. We compile across these platforms with GCC, Visual Studio C++ and the ...
7
votes
2answers
972 views
What are the consequences of NON-CLS Compliant code in .NET?
I have a couple of nagging compiler warnings for an app that I ported from VB6 a while back regarding CLS-Compliance including:
Name '_AnIdentifier' is not CLS-Compliant.
Type of parameter 'myType' ...