C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
C2648
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2648
 
     'identifier' : use of non-static member as default parameter
 
     The specified nonstatic member was used as a default parameter.
 
     The following is an example of this error:
 
          class C
          {
          public:
             int i;
             static int j;
             void func1( int i = i );  // error, i is not static
             void func2( int i = j );  // OK, uses static j
          };
                                    -♦-