C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
C2637
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2637
 
     'identifier' : cannot modify pointers to data members
 
     The specified pointer to a data member was modified.
 
     The following is an example of this error:
 
          struct S {};
          int __pascal S::*pms;     // error
                                    -♦-