I have a member in my class defined like this inside my header file:
static const vector<note_name> noteMap;
In my source file I want to assign values to the vector so I tried:
const vector<note_name> AppSettings::noteMap = {...}
But I'm getting an error: Non-aggregate type 'const vector<note_name>' cannot be initialized with an initializer list. Any ideas how I could initialize this vector? Using an array is not an option btw.