From 93bea3dcd51f9f8a3ccfffca3bec65c32c6c3c12 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Mon, 19 Feb 2024 00:10:40 +0800 Subject: [PATCH] decrease `str` inline size --- include/pocketpy/str.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pocketpy/str.h b/include/pocketpy/str.h index f03cca05..bb3de83d 100644 --- a/include/pocketpy/str.h +++ b/include/pocketpy/str.h @@ -13,7 +13,7 @@ struct Str{ int size; bool is_ascii; char* data; - char _inlined[24]; + char _inlined[16]; bool is_inlined() const { return data == _inlined; }