Optimize parameter passing to avoid unnecessary copying

This commit is contained in:
Pugemon
2024-06-07 04:00:38 +03:00
parent 46ca1bb04a
commit f25a425cb9
123 changed files with 578 additions and 522 deletions
+1 -1
View File
@@ -480,7 +480,7 @@ void Chunks::_setOffset(int32_t x, int32_t z) {
oz = z;
}
bool Chunks::putChunk(std::shared_ptr<Chunk> chunk) {
bool Chunks::putChunk(const std::shared_ptr<Chunk>& chunk) {
int x = chunk->x;
int z = chunk->z;
x -= ox;