Remove alignas(16) from tables

I don't think it makes a difference
This commit is contained in:
2025-05-22 14:54:32 -04:00
parent 23929289cb
commit ad17336997

View File

@@ -54,7 +54,7 @@ constexpr inline struct Tables {
unescape['\\'] = '\\'; unescape['\\'] = '\\';
unescape['/'] = '/'; unescape['/'] = '/';
} }
alignas(16) bool whitespace[256]{}; bool whitespace[256]{};
alignas(16) StringByteMeaning stringByteMeaning[256]{}; StringByteMeaning stringByteMeaning[256]{};
alignas(16) char unescape[256]{}; char unescape[256]{};
} tables; } tables;