From 0b5937a3968a344b53fd2072ec2b71e3587e31d4 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sun, 16 Jun 2002 20:18:51 +0000 Subject: [PATCH] type -> boost::type [SVN r14154] --- include/boost/python/ptr.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/python/ptr.hpp b/include/boost/python/ptr.hpp index dfbb2153..5f8ad2d0 100644 --- a/include/boost/python/ptr.hpp +++ b/include/boost/python/ptr.hpp @@ -80,7 +80,7 @@ namespace detail no_pointer_wrapper_t is_pointer_wrapper_test(...); template - yes_pointer_wrapper_t is_pointer_wrapper_test(type< pointer_wrapper >); + yes_pointer_wrapper_t is_pointer_wrapper_test(boost::type< pointer_wrapper >); template struct pointer_unwrapper @@ -109,7 +109,7 @@ class is_pointer_wrapper public: BOOST_STATIC_CONSTANT( bool, value = ( - sizeof(detail::is_pointer_wrapper_test(type())) + sizeof(detail::is_pointer_wrapper_test(boost::type())) == sizeof(detail::yes_pointer_wrapper_t))); };