From ad17336997ed0a4ef715c449f9e1b53ea9fc52fb Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Thu, 22 May 2025 14:54:32 -0400 Subject: [PATCH] Remove alignas(16) from tables I don't think it makes a difference --- src/tables.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tables.h b/src/tables.h index 5a11225..632ad52 100644 --- a/src/tables.h +++ b/src/tables.h @@ -54,7 +54,7 @@ constexpr inline struct Tables { unescape['\\'] = '\\'; unescape['/'] = '/'; } - alignas(16) bool whitespace[256]{}; - alignas(16) StringByteMeaning stringByteMeaning[256]{}; - alignas(16) char unescape[256]{}; + bool whitespace[256]{}; + StringByteMeaning stringByteMeaning[256]{}; + char unescape[256]{}; } tables;