diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2024-11-04 18:35:07 +0100 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2024-11-08 08:06:01 +0100 |
commit | 95c6a247955172fe3e7bec4c74364966e2b99cda (patch) | |
tree | ae99d38880c1f8ee802c121f2357e1679823fcf6 /SConstruct | |
parent | 1bffd6c73b44b85e5889f54e14b2193940cf5bb1 (diff) | |
download | redot-engine-95c6a247955172fe3e7bec4c74364966e2b99cda.tar.gz |
Add a utility cache line size constant
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index 49278070ae..ee34d421e0 100644 --- a/SConstruct +++ b/SConstruct @@ -851,6 +851,7 @@ if env.msvc and not methods.using_clang(env): # MSVC "/wd4245", "/wd4267", "/wd4305", # C4305 (truncation): double to float or real_t, too hard to avoid. + "/wd4324", # C4820 (structure was padded due to alignment specifier) "/wd4514", # C4514 (unreferenced inline function has been removed) "/wd4714", # C4714 (function marked as __forceinline not inlined) "/wd4820", # C4820 (padding added after construct) |