From 9c2c4bb1fa7b0dfab6b771ccc49eceb83774d203 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Wed, 31 Oct 2012 17:14:43 +0000 Subject: [PATCH] Narrower 'using'; Refs #7470 [SVN r81122] --- include/boost/functional/hash/detail/hash_float.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/functional/hash/detail/hash_float.hpp b/include/boost/functional/hash/detail/hash_float.hpp index 3edc6ab..5fcac60 100644 --- a/include/boost/functional/hash/detail/hash_float.hpp +++ b/include/boost/functional/hash/detail/hash_float.hpp @@ -210,7 +210,7 @@ namespace boost template inline std::size_t float_hash_value(T v) { - using namespace std; + using namespace std::fpclassify; switch (fpclassify(v)) { case FP_ZERO: return 0;