From: Jouk Jansen Date: Thu, 16 May 2013 06:18:54 +0000 (+0000) Subject: m_useExtendedPrecision is only used if the macro wxUSE_APPLE_IEEE is defined X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a60b469fa50ed85df898b3831f6d04f88cad9854 m_useExtendedPrecision is only used if the macro wxUSE_APPLE_IEEE is defined git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73995 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/datstrm.h b/include/wx/datstrm.h index d96482ba34..3a6136fe4b 100644 --- a/include/wx/datstrm.h +++ b/include/wx/datstrm.h @@ -30,9 +30,9 @@ public: // precision (64 bits) is used for doubles. void UseBasicPrecisions() { -#if !wxUSE_APPLE_IEEE +#if wxUSE_APPLE_IEEE m_useExtendedPrecision = false; -#endif // !wxUSE_APPLE_IEEE +#endif // wxUSE_APPLE_IEEE } // UseExtendedPrecision() is not very useful as it corresponds to the