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 C2182

'identifier' : illegal use of type 'void'

A variable is declared type void. The following sample generates C2182:

int i = 10;
void &ir = i;   // C2182, cannot have a reference to type void

void main() {
}