mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-26 15:11:01 +00:00
removed 'CHUNK' macro from global namespace
This commit is contained in:
@@ -4,12 +4,11 @@
|
||||
#include <vector>
|
||||
#include <cstdint>
|
||||
|
||||
#define CHUNK 16384u
|
||||
|
||||
namespace utils::compression
|
||||
{
|
||||
namespace zlib
|
||||
{
|
||||
constexpr unsigned int ZCHUNK_SIZE = 16384u;
|
||||
std::vector<std::uint8_t> compress(const std::vector<std::uint8_t>& data);
|
||||
std::vector<std::uint8_t> decompress(const std::vector<std::uint8_t>& data);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user