CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Threaded View

  1. #1
    Join Date
    Apr 2002
    Posts
    61

    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.
    Attached Files Attached Files

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured