I have a basic question.
I have a class with a data member : double _mydata[N]. (N is a template parameter).
What is the syntax to initialize these data to zero with a constructor initialization list ?
Is _mydata({0}) OK according to the C++ standard (and so for all compilers) ?
Thank you very much.
_mydata({0})wouldn't even compile.