Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 481 Bytes

compiler-error-c2531.md

File metadata and controls

24 lines (20 loc) · 481 Bytes
descriptiontitlems.datef1_keywordshelpviewer_keywordsms.assetid
Learn more about: Compiler Error C2531
Compiler Error C2531
11/04/2016
C2531
C2531
c49afe15-55f8-4dc8-ac01-bf653622a7db

Compiler Error C2531

'identifier' : reference to a bit field illegal

References to bit fields are not allowed.

The following sample generates C2531:

// C2531.cpp// compile with: /cclassP { int &b1 : 10; // C2531int b2 : 10; // OK };
close