I\'m writing a template class and at one point in my code would like to be able to value-initialize an object of the parameterized type on the stack. Right now, I\'m accomp
You can use curly braces in C++0x:
T valueInitialized{};