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.
C2638
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2638
 
     'identifier' : memory-model modifier illegal on pointer to data
     member
 
     A memory-model modifier was specifed for a pointer to a data
     member.
 
     Memory-model modifiers can only be used for pointers to member
     functions.
 
     The following is an example of this error:
 
          class C
          {
          public:
             int i;
             int j;
             int func();
          };
 
          int __near C::* cpi = &C::i;  // error, __near modifier
          int C::* cpj = &C::j;         //OK
          int (__near C::* cpf)() = &C::func; // OK, not data member
                                    -♦-