From efc32d9dbc8408ed2f59da8c2fc268f45b14f305 Mon Sep 17 00:00:00 2001 From: Paweł Kołodziejski Date: Wed, 30 Jul 2003 22:04:31 +0000 Subject: disable empty statement warnings for vc svn-id: r9310 --- common/stdafx.h | 1 + 1 file changed, 1 insertion(+) diff --git a/common/stdafx.h b/common/stdafx.h index 0ee78c127a..2f17591dd4 100644 --- a/common/stdafx.h +++ b/common/stdafx.h @@ -38,6 +38,7 @@ #ifdef _MSC_VER # pragma warning( disable : 4068 ) // turn off "unknown pragma" warning # pragma warning( disable : 4244 ) // turn off "conversion from 'type1' to 'type2', possible loss of data" warning +# pragma warning( disable : 4390 ) // turn off "empty controlled statement found" warning #endif #if _MSC_VER > 1000 -- cgit v1.2.3