variable or field declared void

Eduardo picture Eduardo · Dec 12, 2008 · Viewed 120k times · Source

I have a function called:

void initializeJSP(string Experiment)

And in my MyJSP.h file I have:

2: void initializeJSP(string Experiment);

And when I compile I get this error:

MyJSP.h:2 error: variable or field initializeJSP declared void

Where is the problem?

Answer

Johannes Schaub - litb picture Johannes Schaub - litb · Dec 12, 2008

It for example happens in this case here:

void initializeJSP(unknownType Experiment);

Try using std::string instead of just string (and include the <string> header). C++ Standard library classes are within the namespace std::.