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 Warning (level 3) C4102

'label' : unreferenced label

The label is defined but never referenced. The compiler ignores the label. The following sample generates C4102:

void main() {
   int a;
   
   test:   // C4102, remove the unreferenced label to resolve

   a = 1;
}