C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
C2135
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2135
 
     'identifier' : illegal bit field operation
 
     The address of the specified bit field was taken.
 
     The address-of operator (&) cannot be applied to a bit field.
 
     The following is an example of this error:
 
          struct S
          {
             int i : 1;
             int j;
          };
 
          void main()
          {
             &S::i;      // error, address of a bit field
             &S::j;      // OK
          }
                                    -♦-