From: <mk...@us...> - 2003-08-07 16:59:24
|
Update of /cvsroot/csp/APPLICATIONS/SimData/Include/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv22135/Include/SimData Modified Files: Math.h Log Message: Index: Math.h =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/Math.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Math.h 6 Aug 2003 06:36:24 -0000 1.7 --- Math.h 7 Aug 2003 16:59:21 -0000 1.8 *************** *** 34,40 **** #define __SIMDATA_MATH_H__ - #include <cmath> #include <SimData/Namespace.h> NAMESPACE_SIMDATA --- 34,46 ---- #define __SIMDATA_MATH_H__ #include <SimData/Namespace.h> + #include <cmath> + + #if defined(_MSC_VER) && (_MSC_VER >= 1300) + #include <float.h> + #endif + + NAMESPACE_SIMDATA *************** *** 99,106 **** inline void swap(T &a, T &b) { T t = a; a = b; b = t; } - - #if defined(_MSC_VER) && (_MSC_VER >= 1300) - #include <float.h> - #endif #if (defined(WIN32) && !(defined(_MSC_VER) && (_MSC_VER >= 1300)) && !defined(__MINGW32__) ) || defined (sun) --- 105,108 ---- |