From 936a2dc46c0b289cf401bc63ed88587e10ee82a5 Mon Sep 17 00:00:00 2001 From: bangerth Date: Thu, 27 Dec 2012 01:50:21 +0000 Subject: [PATCH] Hm, that doesn't work. Try std::fpclassify instead. git-svn-id: https://svn.dealii.org/trunk@27857 0785d39b-7218-0410-832d-ea1e28bc413d --- .../include/boost/functional/hash/detail/hash_float.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.39.5