From a60b469fa50ed85df898b3831f6d04f88cad9854 Mon Sep 17 00:00:00 2001 From: Jouk Jansen Date: Thu, 16 May 2013 06:18:54 +0000 Subject: [PATCH] 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 --- include/wx/datstrm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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