فهرست منبع

decrease `str` inline size

blueloveTH 2 سال پیش
والد
کامیت
93bea3dcd5
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      include/pocketpy/str.h

+ 1 - 1
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; }