Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 466 Bytes

compiler-error-c2104.md

File metadata and controls

28 lines (23 loc) · 466 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2104
Compiler Error C2104
11/04/2016
C2104
C2104
2ea78896-72a6-4901-a1fa-f33ea88ad61b

Compiler Error C2104

'&' on bit field ignored

You cannot take the address of a bit field.

The following sample generates C2104:

// C2104.cpp
struct X {
   int sb : 1;
};

int main() {
   X x;
   &x.sb;   // C2104
   x.sb;   // OK
}