Make LocalVector copy constructor explicit.

This commit is contained in:
Lukas Tenbrink 2026-01-23 20:40:25 +01:00
parent 3172d44799
commit 63272b23ef
16 changed files with 20 additions and 20 deletions

View file

@ -158,7 +158,7 @@ void AStarGrid2D::update() {
solid_mask.push_back(false);
}
solid_mask.push_back(true);
points.push_back(line);
points.push_back(std::move(line));
}
for (int32_t x = region.position.x; x < end_x + 2; x++) {