INTEGRATION: CWS mingwport06 (1.7.58); FILE MERGED

2007/08/24 12:55:23 vg 1.7.58.1: #i75499# pragma is for MSVC
This commit is contained in:
Kurt Zenker
2007-09-06 12:43:01 +00:00
parent 6a07c5c5d2
commit 7dd35bdd7c

View File

@@ -4,9 +4,9 @@
*
* $RCSfile: vtablefactory.cxx,v $
*
* $Revision: 1.7 $
* $Revision: 1.8 $
*
* last change: $Author: obo $ $Date: 2006-09-16 15:56:54 $
* last change: $Author: kz $ $Date: 2007-09-06 13:43:01 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -58,9 +58,13 @@
#include <sys/mman.h>
#elif defined SAL_W32
#define WIN32_LEAN_AND_MEAN
#ifdef _MSC_VER
#pragma warning(push,1) // disable warnings within system headers
#endif
#include <windows.h>
#ifdef _MSC_VER
#pragma warning(pop)
#endif
#else
#error Unsupported platform
#endif