From f437b3fea296eb3511672e9d1b754168767ffe76 Mon Sep 17 00:00:00 2001 From: Kurt Zenker Date: Thu, 6 Sep 2007 12:29:29 +0000 Subject: [PATCH] INTEGRATION: CWS mingwport06 (1.5.90); FILE MERGED 2007/08/24 13:12:57 vg 1.5.90.1: #i75499# pragma is for MSVC --- .../source/win32/customactions/reg4msdoc/register.cxx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/setup_native/source/win32/customactions/reg4msdoc/register.cxx b/setup_native/source/win32/customactions/reg4msdoc/register.cxx index d66c7665b4a6..3e6e0fc2d001 100644 --- a/setup_native/source/win32/customactions/reg4msdoc/register.cxx +++ b/setup_native/source/win32/customactions/reg4msdoc/register.cxx @@ -4,9 +4,9 @@ * * $RCSfile: register.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: vg $ $Date: 2006-09-25 13:06:05 $ + * last change: $Author: kz $ $Date: 2007-09-06 13:29:29 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -61,14 +61,20 @@ #include "msihelper.hxx" #endif +#ifdef _MSC_VER #pragma warning(push, 1) /* disable warnings within system headers */ #pragma warning(disable: 4917) +#endif #include +#ifdef _MSC_VER #pragma warning(pop) +#endif #include +#ifdef _MSC_VER #pragma warning(disable: 4350) +#endif typedef std::auto_ptr RegistrarPtr;