From 572a97d3c461ce1bce37f35aac94e492f9fb6bb6 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 29 Nov 2002 14:05:22 +0000 Subject: [PATCH] Casts renamed. [SVN r16457] --- include/boost/intrusive_ptr.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/intrusive_ptr.hpp b/include/boost/intrusive_ptr.hpp index 26c57b1..5d03548 100644 --- a/include/boost/intrusive_ptr.hpp +++ b/include/boost/intrusive_ptr.hpp @@ -143,12 +143,12 @@ template void swap(intrusive_ptr & lhs, intrusive_ptr & rhs) lhs.swap(rhs); } -template intrusive_ptr shared_dynamic_cast(intrusive_ptr const & p) +template intrusive_ptr dynamic_pointer_cast(intrusive_ptr const & p) { return dynamic_cast(p.get()); } -template intrusive_ptr shared_static_cast(intrusive_ptr const & p) +template intrusive_ptr static_pointer_cast(intrusive_ptr const & p) { return static_cast(p.get()); }