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.
C2584
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2584
 
     'identifier1' : direct base 'identifier2' is inaccessible; already
     a base of 'identifier3'
 
     The specified derived class (<identifier1>) was derived from a
     direct base class <('identifier3')> that was already a base class
     of the derived class (<identifier2>).
 
     A class (or structure) cannot use the same class more than once as
     a direct base class (a class mentioned in the list of base classes
     for the derived class). A base class can be used more than once
     as an indirect base class (a class not in the list of base
     classes).
                                    -♦-