From 635d0fb6ce0c1ab1e729fc80b0bf3944d3235147 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Wed, 21 Jan 2015 17:03:07 +0000 Subject: [PATCH] Update operator_return_type_traits.hpp This file needs to include the type_traits headers it actually uses - problem exposed by ongoing type traits rewrite. --- .../boost/lambda/detail/operator_return_type_traits.hpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/include/boost/lambda/detail/operator_return_type_traits.hpp b/include/boost/lambda/detail/operator_return_type_traits.hpp index 90a35fc..6af4d03 100644 --- a/include/boost/lambda/detail/operator_return_type_traits.hpp +++ b/include/boost/lambda/detail/operator_return_type_traits.hpp @@ -12,7 +12,13 @@ #define BOOST_LAMBDA_OPERATOR_RETURN_TYPE_TRAITS_HPP #include "boost/lambda/detail/is_instance_of.hpp" -#include "boost/type_traits/same_traits.hpp" +#include "boost/type_traits/is_same.hpp" +#include "boost/type_traits/is_pointer.hpp" +#include "boost/type_traits/is_float.hpp" +#include "boost/type_traits/is_convertible.hpp" +#include "boost/type_traits/remove_pointer.hpp" +#include "boost/type_traits/remove_const.hpp" +#include "boost/type_traits/remove_reference.hpp" #include "boost/indirect_reference.hpp" #include "boost/detail/container_fwd.hpp"