SeeSoftware
Looking at the documentation i dont really see an obvious difference.
Is there a performance difference between those 2?
Looking at the documentation i dont really see an obvious difference.
Is there a performance difference between those 2?
Yes. From https://urho3d.github.io/documentation/HEAD/_containers.html
"PODVector is only to be used when the elements of the vector need no construction or destruction and can be moved with a block memory copy."
PODVector (“Plain Old Data” vector) is more performant than Vector and is unsafe for self-insertion.
There may be other notes in the class APIs or mentions on the forum.
HTH
thanks for the help!