From 89ab17cce522e44a01e4b8968aefa3d59fbc70e1 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 13 Oct 2008 09:00:03 +0000 Subject: [PATCH] Merge fixes from Trunk. Fixes #2392. Change includes of to . Previously if Boost.TR1 was in the include path then including pulls in all the new TR1 math functions, which in turn also requires linking to an external library. With auto-linking support this requires that library to have been built and be present in the library search path, even if the actual library under use is header only. [SVN r49314] --- include/boost/unordered/detail/hash_table.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/hash_table.hpp b/include/boost/unordered/detail/hash_table.hpp index 234a9071..88e61d13 100644 --- a/include/boost/unordered/detail/hash_table.hpp +++ b/include/boost/unordered/detail/hash_table.hpp @@ -14,7 +14,7 @@ #include #include -#include +#include #include #include #include