From 076b8ad3e2ef3b880fffc86f6b4e6164715f57ad Mon Sep 17 00:00:00 2001 From: avolkov Date: Sat, 19 Dec 2009 04:58:10 +0000 Subject: [PATCH] One more warning that GCC produces (to match same in MSVC) git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3449 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/port.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sc2/src/port.h b/sc2/src/port.h index 27d16599d..f6581db9c 100644 --- a/sc2/src/port.h +++ b/sc2/src/port.h @@ -47,6 +47,8 @@ # pragma warning( 3 : 4057 ) // "unreferenced formal parameter" # pragma warning( 3 : 4100 ) + // "'function' : unreferenced local function has been removed" +# pragma warning( 3 : 4505 ) // "local variable 'name' may be used without having been initialized" # pragma warning( 3 : 4701 )