Compiler Error C2054
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2054.
expected '(' to follow 'identifier'
The function identifier is used in a context that requires trailing parentheses.
This error can be caused by omitting an equal sign (=) on a complex initialization.
The following sample generates C2054:
// C2054.c
int array1[] { 1, 2, 3 }; // C2054, missing =
Possible resolution:
// C2054b.c
int main() {
int array2[] = { 1, 2, 3 };
}
Show: