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.
C2269
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2269
 
     'identifier' : different ambient model than base class 'class'
 
     The specified derived class or structure did not explicitly
     specify an ambient memory model.
 
     A class that is derived from base classes with differing ambient
     memory models must specify an ambient memory model.
 
     The following is an example of this error:
 
          class __far F {};
          class __near N {};
          class Err : F, N {};           // error
          class __far NoErr : F, N {};   // OK
                                    -♦-