Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 577 Bytes

compiler-warning-level-4-c4408.md

File metadata and controls

26 lines (22 loc) · 577 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 4) C4408
Compiler Warning (level 4) C4408
11/04/2016
C4408
C4408
8488a186-ed1d-425c-aaeb-c72472c1da68

Compiler Warning (level 4) C4408

anonymousstruct or union did not declare any data members

An anonymous struct or union must have at least one data member.

The following sample generates C4408:

// C4408.cpp
// compile with: /W4 /LD
static union
{
   // int i;
};
// a named union can have no data members
// } MyUnion;