C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
C2558
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2558
 
     'identifier' : no copy constructor available
 
     No copy constructor was defined to copy the specified class.
 
     A copy constructor is used to initialize an object with the
     values of another object of the same type, that is, to make a
     copy of the object.
 
     If no copy constructor is provided, the compiler will generate
     a default copy constructor. A default copy constructor is not
     generated by the compiler if any user-defined copy constructor
     has been defined.
                                    -♦-