From 02e5f490b165ff28fa080f1c71aacc3938e813cd Mon Sep 17 00:00:00 2001 From: cers <251662022@qq.com> Date: Tue, 3 Mar 2026 13:42:33 +0800 Subject: [PATCH] update ATOM_ALIGN to 256 Eliminate the "Too many properties" warning --- mquickjs_build.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mquickjs_build.c b/mquickjs_build.c index 6173271..0f19f02 100644 --- a/mquickjs_build.c +++ b/mquickjs_build.c @@ -286,7 +286,7 @@ static int atom_cmp(const void *p1, const void *p2) /* js_atom_table must be properly aligned because the property hash table uses the low bits of the atom pointer value */ -#define ATOM_ALIGN 64 +#define ATOM_ALIGN 256 static void dump_atoms(BuildContext *ctx) {