dbertoni 2002/09/18 22:54:02 Modified: c/src/PlatformSupport DoubleSupport.cpp Log: Special case initialization for AIX. Revision Changes Path 1.34 +4 -0 xml-xalan/c/src/PlatformSupport/DoubleSupport.cpp Index: DoubleSupport.cpp =================================================================== RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/DoubleSupport.cpp,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- DoubleSupport.cpp 5 Aug 2002 04:54:45 -0000 1.33 +++ DoubleSupport.cpp 19 Sep 2002 05:54:02 -0000 1.34 @@ -86,7 +86,11 @@ #endif +#if defined(_AIX) +const double DoubleSupport::s_NaN = DBL_QNAN; +#else const double DoubleSupport::s_NaN = sqrt(-2.01); +#endif const double DoubleSupport::s_positiveInfinity = XALAN_POSITIVE_INFINITY; #else
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
