early-access version 1706

This commit is contained in:
pineappleEA
2021-05-25 04:38:22 +02:00
parent f39caea9c3
commit 341610ae6f
5 changed files with 9 additions and 8 deletions

View File

@@ -4,6 +4,7 @@
#pragma once
#include <span>
#include <vector>
#include "common/common_types.h"
@@ -40,6 +41,6 @@ namespace Common::Compression {
*
* @return the decompressed data.
*/
[[nodiscard]] std::vector<u8> DecompressDataZSTD(const std::vector<u8>& compressed);
[[nodiscard]] std::vector<u8> DecompressDataZSTD(std::span<const u8> compressed);
} // namespace Common::Compression
} // namespace Common::Compression