From: bangerth Date: Thu, 27 Dec 2012 01:50:21 +0000 (+0000) Subject: Hm, that doesn't work. Try std::fpclassify instead. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=936a2dc46c0b289cf401bc63ed88587e10ee82a5;p=dealii-svn.git Hm, that doesn't work. Try std::fpclassify instead. git-svn-id: https://svn.dealii.org/trunk@27857 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/contrib/boost-1.49.0/include/boost/functional/hash/detail/hash_float.hpp b/deal.II/contrib/boost-1.49.0/include/boost/functional/hash/detail/hash_float.hpp index 93526bcbef..c4b3ebe18d 100644 --- a/deal.II/contrib/boost-1.49.0/include/boost/functional/hash/detail/hash_float.hpp +++ b/deal.II/contrib/boost-1.49.0/include/boost/functional/hash/detail/hash_float.hpp @@ -62,7 +62,7 @@ namespace boost inline std::size_t float_hash_value(T v) { using namespace std; - switch (::fpclassify(v)) { + switch (std::fpclassify(v)) { case FP_ZERO: return 0; case FP_INFINITE: