diff options
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/types.cpp b/src/types.cpp index f497e9509..fd5bdbc6d 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -306,9 +306,9 @@ struct Type { }; // NOTE(bill): These need to be at the end to not affect the unionized data - i64 cached_size; - i64 cached_align; - u32 flags; // TypeFlag + std::atomic<i64> cached_size; + std::atomic<i64> cached_align; + std::atomic<u32> flags; // TypeFlag bool failure; }; |