'identifier' : unknown size
An unsized array is declared as a member of a class, structure, union, or enumeration. The /Za (ANSI C) option does not allow unsized member arrays.
The following sample generates C2133:
struct X { int a[0]; // error, unsized array };