summaryrefslogtreecommitdiffstats
path: root/src/common/zstd_compression.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/zstd_compression.h')
-rw-r--r--src/common/zstd_compression.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/common/zstd_compression.h b/src/common/zstd_compression.h
index c011ac34b..e0a64b035 100644
--- a/src/common/zstd_compression.h
+++ b/src/common/zstd_compression.h
@@ -34,11 +34,9 @@ std::vector<u8> CompressDataZSTDDefault(const u8* source, std::size_t source_siz
* Decompresses a source memory region with Zstandard and returns the uncompressed data in a vector.
*
* @param compressed the compressed source memory region.
- * @param uncompressed_size the size in bytes of the uncompressed data.
*
* @return the decompressed data.
*/
-std::vector<u8> DecompressDataZSTD(const std::vector<u8>& compressed,
- std::size_t uncompressed_size);
+std::vector<u8> DecompressDataZSTD(const std::vector<u8>& compressed);
} // namespace Common::Compression \ No newline at end of file