File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -268,11 +268,12 @@ inline bool XMComparisonAnyOutOfBounds(uint32_t CR) { return (((CR) & XM_CRMASK_
268268 ****************************************************************************/
269269
270270#pragma warning(push)
271- #pragma warning(disable:4068 4201 4365 4324 4820)
271+ #pragma warning(disable:4068 4201 4365 4324 4608 4820)
272272// C4068: ignore unknown pragmas
273273// C4201: nonstandard extension used : nameless struct/union
274274// C4365: Off by default noise
275275// C4324/4820: padding warnings
276+ // C4608: false union intialization warning from VS 2013
276277
277278#ifdef _PREFAST_
278279#pragma prefast(push)
Original file line number Diff line number Diff line change @@ -18,10 +18,11 @@ namespace PackedVector
1818{
1919
2020#pragma warning(push)
21- #pragma warning(disable:4201 4365 4324 4996)
21+ #pragma warning(disable:4201 4365 4324 4608 4996)
2222// C4201: nonstandard extension used
2323// C4365: Off by default noise
2424// C4324: alignment padding warnings
25+ // C4608: false union intialization warning from VS 2013
2526// C4996: deprecation warnings
2627
2728// ------------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments