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:
which refers to:Code:int VolTableG::bindNext(VolTableG * next) //Assign volume as next in list { if(next()) next->myNext = next(); myNext = next; return 1; }
ANy ideas? thanks guys.Code:VolTableG * VolTableG::next() //get next Volume in list { return myNext; }




Reply With Quote