Hi I have something like:
enum abd {a,b,c};
class d {
private:
abd tab[3][3];
public:
d() {
tab[3][3] = { {a,a,a}, {a,a,a}, {a,a,a} };
}
}
and it yells:
error C2440: '=' : cannot convert from 'initializer-list' to 'abd' and IntelliSense: too many initializer values.
I'm probably blind, cause I cant find my mistake so please tell me whats wrong and how to repair it.