From 4d52613d8737e44fc7d90e490443266cd60563d5 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sun, 8 Dec 2024 15:37:57 +0100 Subject: [PATCH] Add signed size type --- src/common/decls.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/common/decls.h b/src/common/decls.h index 2f5bb85a..b8b23a05 100644 --- a/src/common/decls.h +++ b/src/common/decls.h @@ -16,4 +16,7 @@ using std::ostringstream; using std::unordered_map; namespace fs = std::filesystem; -namespace js = rapidjson; \ No newline at end of file +namespace js = rapidjson; + +// Signed size type +typedef std::make_signed_t ssize_t;