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 C2087

'identifier' : missing subscript

The definition of an array with multiple subscripts is missing a subscript value for a dimension higher than one. The following sample generates C2087:

int func(a)
    char a[10][];         // error
    { }
int func(a)
    char a[][5];          // OK
    { }