Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 550 Bytes

compiler-warning-level-1-c4052.md

File metadata and controls

22 lines (18 loc) · 550 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4052
Compiler Warning (level 1) C4052
11/04/2016
C4052
C4052
f9955421-16ab-46e5-8f9d-bf1639a519ef

Compiler Warning (level 1) C4052

function declarations different; one contains variable arguments

One declaration of the function does not contain variable arguments. It is ignored.

The following sample generates C4052:

// C4052.c
// compile with: /W4 /c
int f();
int f(int i, ...);   // C4052