From 6107a5fe366d2831fba995a6ee419f09fbfd8a89 Mon Sep 17 00:00:00 2001 From: bangerth Date: Tue, 25 Dec 2012 15:05:57 +0000 Subject: [PATCH] Avoid an ambiguity between ::fpclassify and std::fpclassify with recent Intel compilers. git-svn-id: https://svn.dealii.org/trunk@27854 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 ea1bc25f48..93526bcbef 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 (::fpclassify(v)) { case FP_ZERO: return 0; case FP_INFINITE: -- 2.39.5