From: bangerth Date: Tue, 25 Dec 2012 15:05:57 +0000 (+0000) Subject: Avoid an ambiguity between ::fpclassify and std::fpclassify with recent Intel compilers. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6107a5fe366d2831fba995a6ee419f09fbfd8a89;p=dealii-svn.git 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 --- 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: