From 5ba2e0aa6a4e3cd1ab18c9e153ad61ff00c658c2 Mon Sep 17 00:00:00 2001 From: Edward Diener Date: Thu, 5 Mar 2015 11:02:49 -0500 Subject: [PATCH] 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"