summaryrefslogtreecommitdiff
path: root/boost/smart_ptr/detail/sp_counted_impl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/smart_ptr/detail/sp_counted_impl.hpp')
-rw-r--r--boost/smart_ptr/detail/sp_counted_impl.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/boost/smart_ptr/detail/sp_counted_impl.hpp b/boost/smart_ptr/detail/sp_counted_impl.hpp
index a7b43aeaff..1222f3c9f4 100644
--- a/boost/smart_ptr/detail/sp_counted_impl.hpp
+++ b/boost/smart_ptr/detail/sp_counted_impl.hpp
@@ -78,7 +78,7 @@ public:
boost::checked_delete( px_ );
}
- virtual void * get_deleter( detail::sp_typeinfo const & )
+ virtual void * get_deleter( sp_typeinfo const & )
{
return 0;
}
@@ -153,7 +153,7 @@ public:
del( ptr );
}
- virtual void * get_deleter( detail::sp_typeinfo const & ti )
+ virtual void * get_deleter( sp_typeinfo const & ti )
{
return ti == BOOST_SP_TYPEID(D)? &reinterpret_cast<char&>( del ): 0;
}
@@ -249,7 +249,7 @@ public:
a2.deallocate( this, 1 );
}
- virtual void * get_deleter( detail::sp_typeinfo const & ti )
+ virtual void * get_deleter( sp_typeinfo const & ti )
{
return ti == BOOST_SP_TYPEID( D )? &reinterpret_cast<char&>( d_ ): 0;
}