0
votes
4answers
64 views
include file error in C++
I am unable to figure out what is the mistake in the following code. Is there something wrong with the way I am doing includes?
// This is utils.h
#ifndef UTILS_H
#define UTILS_H
…
0
votes
2answers
62 views
create singleton class that has constructor which accepts arguments that are evaluated runtime
I want to have singleton class that its object is not statically created. having the following code, when I call ChromosomePool::createPool() I get the following error message :
- …
0
votes
1answer
26 views
What’s causing this error in a subclass of MKAnnotationView?
I'm trying to create a subclass of MKAnnotationView for an iPhone Mapkit app, but for some reason I am suddenly encountering this error:
Command /Developer/Platforms/iPhoneOS.pla …
0
votes
0answers
10 views
Error preverifying class javax.crypto.interfaces.DHPrivateKey
Hi
I am getting the following error during compilation(JAVA ME). any ideas?..thanks
Error preverifying class javax.crypto.interfaces.DHPrivateKey
java/lang/NoClassDefFoundError: …
-1
votes
4answers
104 views
was not declared in this scope C++
Why do I get this error in the code below?
class ST : public Instruction{
public:
ST (string _name, int _value):Instruction(_name,_value){}
void execute(int[]& anArr, int …
0
votes
2answers
59 views
Boost Multi-Index with hashed_unique_index produces compiler error
Hello,
I learned in THIS THREAD how a hashed_unique<> index can be used with a composite_key using an int and a std::vector<int>. But unfortunately the following code …
0
votes
4answers
64 views
<list> retreving items problem with iterator
I have a list of type Instruction*. Instruction is a class that I made. This class has a function called execute().
I create a list of Instruction*
list<Instruction*> instL …
0
votes
1answer
24 views
error C2664 + generic classes + /Wp64
Hi! I've got the following lines of code:
p_diffuse = ShaderProperty<Vector4>(Vector4(1,1,1,1));
addProperty(&p_diffuse, "diffuse");
p_shininess = ShaderProperty<flo …
1
vote
1answer
69 views
Strange C# compiler error
Can someone help me sort out this compiler error?
I have a class like this
public class Test {
public delegate void TestAction<T>(T arg);
public delegate void TestA …
1
vote
1answer
81 views
sqrt from math.h causes compile error
So I've run into an interesting problem I've never seen before.
I created a small program, as follows:
#include <math.h>
#include <stdio.h>
#include <unist …
1
vote
2answers
201 views
Most obscure errors due to C++ complexity [closed]
Daily C++ programming implies dealing with obscure errors in C++ code that appear due to C++ language complexity. I need to prepare some attractive examples of such errors (and how …
0
votes
1answer
21 views
tcp.h error with gcc 4.4.1
I just upgraded to Ubuntu 9.1 which comes with gcc 4.4.1 and I have a problem compiling my application:
/usr/include/linux/tcp.h:72: error: ‘__u32 __fswab32(__u32)’ cannot appear …
1
vote
2answers
123 views
Method for solving error: “cannot instantiate abstract class”
I find one of the most time-consuming compiler errors for me is "cannot instantiate abstract class," since the problem is always that I didn't intend for the class to be abstract a …
2
votes
1answer
43 views
illegal reference to non-static member ‘Sun::m_SunTexture’
Hi, I am not overly competent in C++ and this compiler error is just making no sense to me. The following line calls the compiler error shown in the title:
m_SunTexture = LudoTex …
0
votes
3answers
80 views
What is “[DCC Fatal Error] frm_Test.pas(381): F2084 Internal Error: C15700”?
Hello,
I am upgrading a project from Delphi 2009 to D2010 and came across the following Internal Error
[DCC Fatal Error] frm_Test.pas(381):
F2084 Internal Error: C15700
wh …
