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.
C2502
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2502
 
     'identifier' : too many access modifiers on the base class
 
     The specified base class had more than one access modifier.
 
     A base class or structure can be declared with only one access
     modifier (public, private, or protected).
 
     The following is an example of this error:
 
          class A { };
          class B { };
          class C : private public A { };     // error
          class D : private A { };            // OK
          class E : public A, private B { };  // OK
                                    -♦-