From 04444d029b2fc073842b367e80ba3ea19610cb49 Mon Sep 17 00:00:00 2001 From: ChenChuang Date: Sat, 4 Feb 2023 22:42:52 +0800 Subject: [PATCH] fix: fix the bug about typdef of char --- Include/BaseInc/BaseType.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/BaseInc/BaseType.h b/Include/BaseInc/BaseType.h index 0a10a6e..f29d45c 100644 --- a/Include/BaseInc/BaseType.h +++ b/Include/BaseInc/BaseType.h @@ -13,7 +13,7 @@ typedef unsigned int U32; typedef unsigned long U64; // 有符号整数类型 -typedef char S8; +typedef signed char S8; typedef short S16; typedef int S32; typedef long S64; -- Gitee