From: Ryan Norton Date: Thu, 17 Feb 2005 10:19:31 +0000 (+0000) Subject: gcc doesn't have pragma warning X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c5ceb215a95990937a203838ceaa4d20eb39971e gcc doesn't have pragma warning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32113 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/datstrm.cpp b/src/common/datstrm.cpp index 0eeeca6891..b661775598 100644 --- a/src/common/datstrm.cpp +++ b/src/common/datstrm.cpp @@ -335,7 +335,7 @@ void wxDataOutputStream::WriteDouble(double d) #if wxUSE_APPLE_IEEE ConvertToIeeeExtended(d, (unsigned char *)buf); #else -#ifndef __VMS__ +#if !defined(__VMS__) && !defined(__GNUG__) # pragma warning "wxDataOutputStream::WriteDouble() not using IeeeExtended - will not work!" #endif buf[0] = '\0';