Update of /cvsroot/boost/boost/boost
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv14140

Modified Files:
        shared_ptr.hpp 
Log Message:
Fix compare_fail failure

Index: shared_ptr.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/shared_ptr.hpp,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -d -r1.66 -r1.67
--- shared_ptr.hpp      1 Dec 2006 14:24:58 -0000       1.66
+++ shared_ptr.hpp      6 Apr 2007 00:21:41 -0000       1.67
@@ -323,8 +323,6 @@
 
     // implicit conversion to "bool"
 
-/*
-
 #if defined(__SUNPRO_CC) && BOOST_WORKAROUND(__SUNPRO_CC, <= 0x530)
 
     operator bool () const
@@ -334,8 +332,6 @@
 
 #elif defined( _MANAGED )
 
-*/
-
     static void unspecified_bool( this_type*** )
     {
     }
@@ -347,8 +343,6 @@
         return px == 0? 0: unspecified_bool;
     }
 
-/*
-
 #elif \
     ( defined(__MWERKS__) && BOOST_WORKAROUND(__MWERKS__, < 0x3200) ) || \
     ( defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__ < 304) )
@@ -371,8 +365,6 @@
 
 #endif
 
-*/
-
     // operator! is redundant, but some compilers need it
 
     bool operator! () const // never throws


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to