C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
C4024
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler warning (level 1) C4024
 
     'function' : different types for formal and actual
     parameter 'number'
 
     The type of the given actual parameter in a function call did
     not agree with the type given for the formal parameters in the
     function prototype or definition.
 
     The actual parameter will be passed without change. The function
     will convert the parameter's type to the type expected by the
     function.
                                    -♦-