Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 670 Bytes

compiler-warning-level-4-c4234.md

File metadata and controls

21 lines (16 loc) · 670 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 4) C4234
Compiler Warning (level 4) C4234
11/04/2016
C4234
C4234
f7fecd5c-8248-4fde-8446-502aedc357ca

Compiler Warning (level 4) C4234

nonstandard extension used: 'keyword' keyword reserved for future use

The compiler does not yet implement the keyword you used.

This warning is automatically promoted to an error. If you wish to modify this behavior, use #pragma warning. For example, to make C4234 into a level 4 warning issue,

#pragma warning(2:4234)

in your source code file.