1 Attachment(s)
Just a bad day? (compiler errors)
I tried to compile some code that I've been working with and compiled several time only today I'm getting A LOT of compiler errors. This one in particular is bothering me:
I get
"c:\dev-cpp\fabsim\globalmeta.cpp(71) : error C2064: term does not evaluate to a function"
from VSC 6.0.
the piece its talking about is:
Code:
int VolTableG::bindNext(VolTableG * next)
//Assign volume as next in list
{
if(next()) next->myNext = next();
myNext = next;
return 1;
}
which refers to:
Code:
VolTableG * VolTableG::next()
//get next Volume in list
{
return myNext;
}
ANy ideas? thanks guys.