summaryrefslogtreecommitdiff
path: root/boost/phoenix/stl/algorithm/detail/has_find.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/phoenix/stl/algorithm/detail/has_find.hpp')
-rw-r--r--boost/phoenix/stl/algorithm/detail/has_find.hpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/boost/phoenix/stl/algorithm/detail/has_find.hpp b/boost/phoenix/stl/algorithm/detail/has_find.hpp
index b089305bac..941a998797 100644
--- a/boost/phoenix/stl/algorithm/detail/has_find.hpp
+++ b/boost/phoenix/stl/algorithm/detail/has_find.hpp
@@ -22,6 +22,7 @@
#include "./is_std_set.hpp"
#include "./is_std_hash_map.hpp"
#include "./is_std_hash_set.hpp"
+#include "./is_unordered_set_or_map.hpp"
namespace boost
{
@@ -41,12 +42,15 @@ namespace boost
, is_std_hash_set<T>
, is_std_hash_multiset<T>
>
+ , boost::mpl::or_<
+ is_std_unordered_map<T>
+ , is_std_unordered_multimap<T>
+ , is_std_unordered_set<T>
+ , is_std_unordered_multiset<T>
+ >
>
{
};
}
-// Bring in unordered_set and unordered_map stuff.
-#include "./is_unordered_set_or_map.hpp"
-
#endif