decrease str inline size

This commit is contained in:
blueloveTH 2024-02-19 00:10:40 +08:00
parent 4509076b78
commit 93bea3dcd5

View File

@ -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; }