Disable Code Analysis warning C6011 for now. Hopefully Clang can pick
authorGerald Combs <gerald@wireshark.org>
Fri, 18 Feb 2011 00:33:35 +0000 (00:33 -0000)
committerGerald Combs <gerald@wireshark.org>
Fri, 18 Feb 2011 00:33:35 +0000 (00:33 -0000)
up the slack.

svn path=/trunk/; revision=35994

config.h.win32

index bfed02b77660f3184cf075f22061efcc51b56e66..9eda473a17fe4b30e2fbcc61b3d47461e758fbab 100644 (file)
 #error Your MSVC_VARIANT setting in config.nmake doesn't match the MS compiler version!
 #endif
 
+/* Disable Code Analysis warnings that result in too many false positives. */
+/* http://msdn.microsoft.com/en-US/library/zyhb0b82.aspx */
+#if _MSC_VER >= 1400
+#pragma warning ( disable : 6011 )
+#endif
+
 typedef int ssize_t;