mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-03-05 17:44:52 +01:00
GZip: remove useless move
This was causing a compiler warning with GCC 9.
This commit is contained in:
parent
ae68c3bab4
commit
f58677b7f0
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ std::vector<uint8_t> readGZip(const char *filename) {
|
||||||
|
|
||||||
buffer.resize(len);
|
buffer.resize(len);
|
||||||
|
|
||||||
return std::move(buffer);
|
return buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue