GZip: remove useless move

This was causing a compiler warning with GCC 9.
This commit is contained in:
Matthias Schiffer 2019-08-28 20:57:40 +02:00
parent ae68c3bab4
commit f58677b7f0
Signed by: neocturne
GPG key ID: 16EF3F64CB201D9C

View file

@ -59,7 +59,7 @@ std::vector<uint8_t> readGZip(const char *filename) {
buffer.resize(len);
return std::move(buffer);
return buffer;
}
}