How do I concatenate two std::vectors?
std::vector
You should use vector::insert
v1.insert(v1.end(), v2.begin(), v2.end());