'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