refactor(aliases): replace std_cstdint with ByteBuffer alias

This commit is contained in:
Ваше Имя
2025-10-09 15:23:38 +04:00
parent a4f103d0c8
commit aeeb22d351
2 changed files with 6 additions and 7 deletions
+6
View File
@@ -0,0 +1,6 @@
#pragma once
#include <cstdint>
#include <vector>
// Alias for raw byte buffer
using ByteBuffer = std::vector<std::uint8_t>;
-7
View File
@@ -1,7 +0,0 @@
#pragma once
#include <cstdint>
// Fixed-width unsigned integers
using u8 = std::uint8_t;
using u32 = std::uint32_t;
using u64 = std::uint64_t;