#pragma once // This is made toggleable since `irrt_test.cpp` itself would include // headers that define the `int_t` family. #ifndef IRRT_DONT_TYPEDEF_INTS typedef _BitInt(8) int8_t; typedef unsigned _BitInt(8) uint8_t; typedef _BitInt(32) int32_t; typedef unsigned _BitInt(32) uint32_t; typedef _BitInt(64) int64_t; typedef unsigned _BitInt(64) uint64_t; #endif typedef int32_t SliceIndex;