Don't use fpclass because it causes a warning for long doubles. I don't know if the warning is vaild here - but I don't want to disable it as it's useful for checking other function calls.

[SVN r41057]
This commit is contained in:
Daniel James
2007-11-13 11:51:23 +00:00
parent 035b91bdcd
commit b0d0ec44ec

View File

@@ -41,9 +41,13 @@
// Dinkumware Library, on Visual C++
#elif (defined(_YVALS) && !defined(__IBMCPP__)) || defined(_CPPLIB_VER)
# if defined(BOOST_MSVC)
# define BOOST_HASH_USE_FPCLASS
# endif
// Not using _fpclass because it causes a warning about a conversion
// from 'long double' to 'double'. Pity.
//
//# if defined(BOOST_MSVC)
//# define BOOST_HASH_USE_FPCLASS
//# endif
#endif