Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 769 Bytes

compiler-error-c2626.md

File metadata and controls

39 lines (33 loc) · 769 Bytes
descriptiontitlems.datef1_keywordshelpviewer_keywordsms.assetid
Learn more about: Compiler Error C2626
Compiler Error C2626
11/04/2016
C2626
C2626
4c283ad0-251b-4571-bc18-468b9836746f

Compiler Error C2626

'identifier': a private or protected data member is not allowed in an anonymous struct or union

A member of an anonymous struct or union must have public access.

The following sample generates C2626:

// C2626.cppintmain() { union { protected:int j; // C2626, j is protectedprivate:int k; // C2626, k is private }; }

To fix this issue, remove any private or protected tags:

// C2626b.cppintmain() { union { public:int i; // OK, i is public }; }
close