From ed692127b855d5097fea703bd6755b0ad55d9fc7 Mon Sep 17 00:00:00 2001 From: Marian Krivos Date: Mon, 22 Aug 2011 17:37:58 +0000 Subject: [PATCH] trunk/branch integration: fix warning --- Foundation/include/Poco/Platform_WIN32.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Foundation/include/Poco/Platform_WIN32.h b/Foundation/include/Poco/Platform_WIN32.h index 368bd8ca1..389997aee 100644 --- a/Foundation/include/Poco/Platform_WIN32.h +++ b/Foundation/include/Poco/Platform_WIN32.h @@ -1,7 +1,7 @@ // // Platform_WIN32.h // -// $Id: //poco/svn/Foundation/include/Poco/Platform_WIN32.h#3 $ +// $Id: //poco/1.4/Foundation/include/Poco/Platform_WIN32.h#1 $ // // Library: Foundation // Package: Core @@ -79,6 +79,7 @@ #pragma warning(disable:4996) // VC++ 8.0 deprecation warnings #pragma warning(disable:4351) // new behavior: elements of array '...' will be default initialized #pragma warning(disable:4675) // resolved overload was found by argument-dependent lookup + #pragma warning(disable:4275) // non dll-interface class 'std::exception' used as base for dll-interface class 'Poco::Exception' #endif