K
Kitty
Given the following code:
vector<Obj> v;
.....
for(i=0;i<v.size();i++)
v.some_data=0;
Is it possible to further simplify and improve the speed of the above code?
Thanks.
vector<Obj> v;
.....
for(i=0;i<v.size();i++)
v.some_data=0;
Is it possible to further simplify and improve the speed of the above code?
Thanks.