C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
C2064
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2064
 
     term does not evaluate to a function
 
     A call was made to a function through an expression that did not
     evaluate to a function pointer.
 
     This error is probably caused by attempting to call a nonfunction.
 
     The following is an example of this error:
 
          int i, j;
          char* p;
          void func()
          {
             j = i();    // error, i is not a function
             p();        // error, p doesn't point to a function
          }
                                    -♦-