summaryrefslogtreecommitdiff
path: root/msvc
diff options
context:
space:
mode:
Diffstat (limited to 'msvc')
-rw-r--r--msvc/config.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/msvc/config.h b/msvc/config.h
index dc9280e..7a374b3 100644
--- a/msvc/config.h
+++ b/msvc/config.h
@@ -12,10 +12,12 @@
/* Disable: warning C4200: nonstandard extension used : zero-sized array in struct/union */
#pragma warning(disable:4200)
+/* Disable: warning C4324: structure was padded due to __declspec(align()) */
+#pragma warning(disable:4324)
/* Disable: warning C6258: Using TerminateThread does not allow proper thread clean up */
-#pragma warning(disable: 6258)
+#pragma warning(disable:6258)
/* Disable: warning C4996: 'GetVersionA': was declared deprecated */
-#pragma warning(disable: 4996)
+#pragma warning(disable:4996)
#if defined(_PREFAST_)
/* Disable "Banned API" errors when using the MS's WDK OACR/Prefast */