Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r55569 - sandbox/fmhess/boost/smart_ptr
From: fmhess_at_[hidden]
Date: 2009-08-13 12:49:23


Author: fmhess
Date: 2009-08-13 12:49:22 EDT (Thu, 13 Aug 2009)
New Revision: 55569
URL: http://svn.boost.org/trac/boost/changeset/55569

Log:
Fixed compile errors.

Text files modified:
   sandbox/fmhess/boost/smart_ptr/weak_ptr.hpp | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: sandbox/fmhess/boost/smart_ptr/weak_ptr.hpp
==============================================================================
--- sandbox/fmhess/boost/smart_ptr/weak_ptr.hpp (original)
+++ sandbox/fmhess/boost/smart_ptr/weak_ptr.hpp 2009-08-13 12:49:22 EDT (Thu, 13 Aug 2009)
@@ -25,7 +25,7 @@
                 weak_ptr(base_type const & b): base_type(b) {}
                 template<class Y>
 #if !defined( BOOST_NO_SFINAE )
- weak_ptr( weak_ptr<Y> const & r, typename typename enable_if<is_convertible<Y*, T*> >::type * = 0 )
+ weak_ptr( weak_ptr<Y> const & r, typename enable_if<is_convertible<Y*, T*> >::type * = 0 )
 #else
                 weak_ptr( weak_ptr<Y> const & r )
 #endif
@@ -33,7 +33,7 @@
                 {}
     template<class Y>
 #if !defined( BOOST_NO_SFINAE )
- weak_ptr( shared_ptr<Y> const & r, typename typename enable_if<is_convertible<Y*, T*> >::type * = 0 )
+ weak_ptr( shared_ptr<Y> const & r, typename enable_if<is_convertible<Y*, T*> >::type * = 0 )
 #else
                 weak_ptr( shared_ptr<Y> const & r )
 #endif
@@ -42,7 +42,7 @@
 #ifndef BOOST_NO_RVALUE_REFERENCES
     template<class Y>
 #if !defined( BOOST_NO_SFINAE )
- weak_ptr( weak_ptr<Y> && r, typename typename enable_if<is_convertible<Y*, T*> >::type * = 0 )
+ weak_ptr( weak_ptr<Y> && r, typename enable_if<is_convertible<Y*, T*> >::type * = 0 )
 #else
     weak_ptr( weak_ptr<Y> && r )
 #endif


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk