mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Let's align the buffer to the nearest alignment point, same as Luau::Variant.
This commit is contained in:
parent
7bab184b10
commit
d866a0d683
1 changed files with 4 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue