[Q] wxDouble is "long double" for Intel wxMac?
Demian M. Nave
dnave at psc.edu
Thu Jul 5 16:36:42 PDT 2007
Hi,
I was wondering if wxDouble should really be typdef'd to "long double" for
wxMac Intel builds, even though it is "double" for all other Intel builds?
The following code in wx/defs.h produces this behavior:
#if defined( __WXMAC__ ) && !defined( __POWERPC__ )
typedef long double wxDouble;
#else
typedef double wxDouble;
#endif
This question applies to (at least):
WX : SVN 2.8 branch, SVN trunk
OS : Intel Mac OS/X 10.4.9
COMPILER: XCode 2.3 (gcc 4.0.1-5341)
Thanks!
Demian
More information about the wx-users
mailing list