Let's align the buffer to the nearest alignment point, same as Luau::Variant.

This commit is contained in:
Alexander McCord 2024-06-03 20:51:02 -07:00
parent 7bab184b10
commit d866a0d683

View file

@ -237,8 +237,11 @@ public:
template<typename... Ts>
class Language final
{
static constexpr size_t bufferSize = std::max({sizeof(Ts)...});
static constexpr size_t bufferAlign = std::max({alignof(Ts)...});
const char* tag;
char buffer[std::max({sizeof(Ts)...})];
alignas(bufferAlign) char buffer[bufferSize];
private:
template<typename T>