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 C2054

expected '(' to follow 'identifier'

The function identifier is used in a context that requires trailing parentheses.

Possible cause

The following sample generates C2054:

int array1[] { 1, 2, 3 };   // error, missing =
int array2[] = { 1, 2, 3 }; // OK