zstd_compression: Make use of std::span
Allows for the incoming data stream to be non-allocating.
This commit is contained in:
parent
00213377b1
commit
49bfd0c461
2 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue