[build] cmake: Add 4324 to ignored MSVC warnings (#7028)

4324 is issued at /W4 if alignas forces padding. Makes it impossible to use SmallVector from something compiled in /W4. Add it to the warning exclusion list.
This commit is contained in:
Thad House
2024-09-03 12:31:38 -07:00
committed by GitHub
parent 495c371ce7
commit 0b0c7c88ee

View File

@@ -21,6 +21,7 @@ macro(wpilib_target_warnings target)
/wd4244
/wd4251
/wd4267
/wd4324
/WX
/D_CRT_SECURE_NO_WARNINGS
${WPILIB_TARGET_WARNINGS}