NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error C2531

'identifier' : reference to a bit field illegal

References to bit fields are not allowed. The following sample generates C2531:

class P {
   int &b1 : 10;   // C2531, remove the & to resolve the error
};

void main() {
}