Attempt to fix windows build

Align atomic HeadPtr to 64-bits.
This commit is contained in:
Mathias Agopian
2018-11-05 19:36:48 -08:00
committed by Mathias Agopian
parent 68c6afa72e
commit e5cfbeff4d

View File

@@ -288,7 +288,7 @@ private:
std::atomic<Node*> next;
};
struct HeadPtr {
struct alignas(8) HeadPtr {
int32_t offset;
uint32_t tag;
};