xxHash jest teraz osobną biblioteką

This commit is contained in:
yanczi 2025-11-14 18:49:17 +01:00
parent b3c317c914
commit 29b2460910
5 changed files with 11 additions and 11 deletions

View file

@ -139,12 +139,12 @@ bool ExtractCargo::HashValid(const std::vector<char>& data, const uint64_t& crc)
//-----------------------------------------------------------------------------
void ExtractCargo::computingBytes(const std::vector<char>& input, std::vector<char>& output, const int16_t& flag)
{
CompressingManager cm(eman);
ChunkManager cm(eman);
switch (flag)
{
case 1:
output = cm.decompress(input, false);
output = cm.dechunked(input, false);
break;
case 2:
@ -152,7 +152,7 @@ void ExtractCargo::computingBytes(const std::vector<char>& input, std::vector<ch
break;
case 3:
output = cm.decompress(input, false);
output = cm.dechunked(input, false);
break;
default: