Preparation for building instructions

This commit is contained in:
2026-03-23 07:22:00 -06:00
parent b4560c208f
commit da1c090f19
18 changed files with 1454 additions and 100 deletions

View File

@@ -8,6 +8,7 @@
namespace spider {
// Absolute Types
using u8 = std::uint8_t;
using u16 = std::uint16_t;
using u32 = std::uint32_t;
@@ -25,6 +26,9 @@ namespace spider {
static_assert(sizeof(f32) == 4, "The f32 type must be exactly 4 bytes.");
static_assert(sizeof(f64) == 8, "The f64 type must be exactly 8 bytes.");
// Utility types
using isize = std::size_t;
// Utility imports
using std::vector;
using std::deque;