I encountered a compilation error when trying to initialize a vector of pointers to NULL
by way of the std::vector
constructor. I simplify the instruction to keep it simple:
vector<int*> v (100,NULL)
I guess it has something to do with an incompatibility between const T& value= T()
(the parameter of the constructor) and the very value NULL, but I would appreciate some further explanation.
Thank you