C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
C4184
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler warning (level 1) C4184
 
     near call to thunk for 'function' in a different segment
 
     A near member function was overridden by a near member function
     in another segment.
 
     The compiler extended the near call to a far call.
 
     This warning can be avoided by making both functions far or by
     making sure that the overriding member function is in the same
     segment as the original member function.
                                    -♦-