In my .hpp file I have
extern const double MY_CONST[44];
and in my .cpp file I have
const double MY_CONST[44];
and I get something like this:
error: uninitialized const 'MY_CONST' [-fpermissive]
Could you please tell me where the error is? Thanks