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) C4646

function declared with __declspec(noreturn) has non-void return type

A function marked with the noreturn __declspec modifier should have a void return type.

The following sample generates C4646:

int __declspec(noreturn) bar() {   // C4546, make return type void
}

void main() {
}