From e6812d2df6bd8a0a71375096abe46f8039d8c570 Mon Sep 17 00:00:00 2001 From: Mel Date: Tue, 11 Jul 2023 04:13:18 +0200 Subject: Create MeshBuilder utility for comfy mesh building --- src/Common/Sizes.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/Common/Sizes.hpp') diff --git a/src/Common/Sizes.hpp b/src/Common/Sizes.hpp index 91422e5..de49d3d 100644 --- a/src/Common/Sizes.hpp +++ b/src/Common/Sizes.hpp @@ -1,6 +1,7 @@ #pragma once #include +#include using I8 = int8_t; using U8 = uint8_t; @@ -14,8 +15,8 @@ using U32 = uint32_t; using I64 = int64_t; using U64 = uint64_t; -using ISize = I64; -using USize = U64; +using ISize = ssize_t; +using USize = size_t; using F32 = float; using F64 = double; -- cgit 1.4.1