'identifier' : array of references must be fully initialized
Elements of the specified array are not initialized. You must supply an initializer for every element in an array of references.
Example
int a, b, c; int &ai[3]; // error, elements not initialized int &ai[3] = { a, b, c }; // OK