j
k
j a
j l
2009/1/14 Peter Dimov
Germán Diago: ... ...std::vector result(get_base_objects.size()); You're creating a vector full of NULLs here. :-)
Germán Diago: ...
std::vector result(get_base_objects.size());
You're creating a vector full of NULLs here. :-)
True!!! What I wanted is result.reserve(get_base_objects.size()) Thank you. Corrected.
Attachments:
Back to the thread
Back to the list