4
votes
6answers
106 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 comm …
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. …
0
votes
4answers
29 views
Visual Studio: Warn when private or internal members have no references
Is there a way to get visual studio to warn that a private member does not have any references within the class? How about internal members that have no references within the packa …
2
votes
3answers
123 views
Why “not all control paths return a value” is warning and not an error?
I was trying to answer this question. As suggested by the accepted answer, the problem with that code is that not all control paths are returning a value. I tried this code on the …
1
vote
3answers
1k 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' …
1
vote
1answer
68 views
What is a manifest authoring warning ?
Anyone knows what this mean? Care to shed some light?
Got this warning while compiling a MFC project in VS2005.
..\..\..\Shared\res\zenOn_common.manifest : manifest authoring warn …
2
votes
3answers
187 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. Tr …
1
vote
2answers
32 views
Optional argument cannot be erased?
I wanted to have a tail-recursive version of List.map, so I wrote my own. Here it is:
let rec list_map f l ?(accum=[])=
match l with
head :: tail -> list_map f tail ~a …
7
votes
5answers
133 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 T …
0
votes
3answers
61 views
unnecessary (?) Xcode warning
I'm running Xcode in OS X 10.6 on a Core 2 Duo. Here's a short program:
#include <stdio.h>
int main () {
long a = 8589934592L;
printf("a = %li\n", a);
return 0 …
0
votes
2answers
109 views
Compiler warning with nested vectors of depth 3 or more
Hi,
I am trying to use a class member that uses nested vectors of depth 3:
vector< vector< vector > > classVariable_;
However, I then get compiler warnings throughout my c …
2
votes
2answers
102 views
LNK4075: ignoring ‘/EDITANDCONTINUE’ due to ‘/OPT:ICF’ specification
I recently converted a multi-project solution to use .dlls instead of .libs for each of the projects. However, I now get a compiler warning for each project as stated in the examp …
0
votes
3answers
71 views
Custom Compiler Warnings in Visual Studio 2008
http://stackoverflow.com/questions/154109/custom-compiler-warnings and
http://stackoverflow.com/questions/968249/c-create-custom-warning-in-visual-studio-if-certain-method-is-used- …
1
vote
5answers
300 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 t …
2
votes
5answers
123 views
How to get rid of C4800 warning produced by boost::flyweight in VS2008
Hi,
I get a warning when compiling below code in VS2008 with MFC turned on. Boost version 1.39
include "boost/flyweight.hpp"
include "boost/flyweight/key_value.hpp"
class Foo
{
…
