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 C2075

'identifier' : array initialization needs curly braces

There were no curly braces around the specified array initializer. The following sample generates C2075:

int i[] = 1, 2, 3 };     // error
int i[] = { 1, 2, 3 };   // OK