I have a line of code that looks like this:
_data = new (nothrow) T[_size];
This code is inside a classe's constuctor
The problem is that it initializes each element to zero which I don't want it to do.
Is there to just have it reserve the memory but not set it to zero?