Used swap in favor of move

This commit is contained in:
Holden Green
2018-07-04 22:10:45 -07:00
parent 7befd59de4
commit 6650dbf397

View File

@@ -1270,7 +1270,7 @@ static bool exportGroupsToShape(shape_t *shape,
if(!lineGroup.empty()){
shape->path.indices = std::move(lineGroup);
shape->path.indices.swap(lineGroup);
}
return true;