Use a Vector<std::string> , instead of a Set<std::string> as a Set does
not keep the same order when iterating over it.
Details
Details
Diff Detail
Diff Detail
- Repository
- rB Blender
Event Timeline
Comment Actions
I can't see context, but if really important to find strings by hash in container and save order of appending, so you can also look at VectorSet
Comment Actions
I think a Set was the wrong choice anyway. A Set is useful for quick lookup I think, but I just need to iterate over it.