Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 695 Bytes

compiler-warning-level-1-c4829.md

File metadata and controls

21 lines (17 loc) · 695 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4829
Compiler Warning (level 1) C4829
11/04/2016
C4829
C4829
4ffabe2b-2ddc-4c52-8564-d1355c93cfa6

Compiler Warning (level 1) C4829

Possibly incorrect parameters to function main. Consider 'intmain(Platform::Array<Platform::String^>^ argv)'

Certain functions, such as main, cannot take reference type parameters. While compilation will succeed, the resulting image will probably not run.

The following sample generates C4829:

// C4829.cpp
// compile by using: cl /EHsc /ZW /W4 /c C4829.cpp
int main(Platform::String ^ s) {}   // C4829