Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 658 Bytes

compiler-warning-level-1-c4810.md

File metadata and controls

24 lines (20 loc) · 658 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4810
Compiler Warning (level 1) C4810
11/04/2016
C4810
C4810
39e2cae0-9c1c-4ac1-aaa0-5f661d06085b

Compiler Warning (level 1) C4810

value of pragma pack(show) == n

This warning is issued when you use the show option of the pack pragma. n is the current pack value.

For example, the following code shows how the C4810 warning works with the pack pragma:

// C4810.cpp
// compile with: /W1 /LD
// C4810 expected
#pragma pack(show)
#pragma pack(4)
#pragma pack(show)