summaryrefslogtreecommitdiff
path: root/boost/python/reference_existing_object.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/python/reference_existing_object.hpp')
-rw-r--r--boost/python/reference_existing_object.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/python/reference_existing_object.hpp b/boost/python/reference_existing_object.hpp
index 8c2410715b..4c8344070b 100644
--- a/boost/python/reference_existing_object.hpp
+++ b/boost/python/reference_existing_object.hpp
@@ -9,7 +9,7 @@
# include <boost/python/detail/indirect_traits.hpp>
# include <boost/mpl/if.hpp>
# include <boost/python/to_python_indirect.hpp>
-# include <boost/type_traits/composite_traits.hpp>
+# include <boost/python/detail/type_traits.hpp>
namespace boost { namespace python {
@@ -31,7 +31,7 @@ struct reference_existing_object
struct apply
{
BOOST_STATIC_CONSTANT(
- bool, ok = is_pointer<T>::value || is_reference<T>::value);
+ bool, ok = detail::is_pointer<T>::value || detail::is_reference<T>::value);
typedef typename mpl::if_c<
ok