შენიშვნა
ამ გვერდზე წვდომა მოითხოვს ავტორიზაციას. შეგიძლიათ სცადოთ შესვლა ან შეცვალოთ დირექტორიები.
ამ გვერდზე წვდომა მოითხოვს ავტორიზაციას. შეგიძლიათ სცადოთ დირექტორიების შეცვლა.
formal parameter 'number' different from declaration
Remarks
The type of the formal parameter does not agree with the corresponding parameter in the declaration. The type in the original declaration is used.
This warning is only valid for C source code.
Example
The following example generates C4028.
// C4028.c
// compile with: /W1 /Za
void f(int , ...);
void f(int i, int j) {} // C4028
void g(int , int);
void g(int i, int j) {} // OK
int main() {}