blob: d59cde9cf16dc8c7d8eb267ecfd3f96dd27a0b95 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#pragma once
namespace NUCompress {
// These limitations come from original implementation - library/python/compress
using TBlockLen = ui32;
constexpr TBlockLen MaxCompressedLen = 100000000;
}
|