How to initialize a const array with size defined in template before the constructor call??
template<int s>
class something
{
public:
const int array[s];
something(void) // uninitialized member `something<s>::array' with `const' type `const int[s]'
{
}
};
razum