S
Someonekicked
this is example of what is going on my program, and the error im getting :
when i try to compile the following :
#include <iostream>
using namespace std;
class first {
public:
first(int max) { };
};
class whatever {
public:
whatever() { };
private:
first sowhat(2);
};
I get the error, syntax error : 'constant'
any ideas to solve it?
when i try to compile the following :
#include <iostream>
using namespace std;
class first {
public:
first(int max) { };
};
class whatever {
public:
whatever() { };
private:
first sowhat(2);
};
I get the error, syntax error : 'constant'
any ideas to solve it?