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

Modified Files:
      Tag: RC_1_34_0
        none.hpp 
Removed Files:
      Tag: RC_1_34_0
        none_t.hpp 
Log Message:
none_t/none reimplemented to avoid precompiled header issues (thanks to Joe 
Gottam)
optional<T> now has direct relational operator
optional<T>::operator-> fixed for reference types

Index: none.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/none.hpp,v
retrieving revision 1.3.6.1
retrieving revision 1.3.6.2
diff -u -d -r1.3.6.1 -r1.3.6.2
--- none.hpp    20 Jul 2006 23:23:09 -0000      1.3.6.1
+++ none.hpp    1 Mar 2007 23:08:33 -0000       1.3.6.2
@@ -12,17 +12,12 @@
 #ifndef BOOST_NONE_17SEP2003_HPP
 #define BOOST_NONE_17SEP2003_HPP
 
-#include "boost/none_t.hpp"
-
-// NOTE: Borland users have to include this header outside any precompiled 
headers
-// (bcc<=5.64 cannot include instance data in a precompiled header)
-//  -- * To be verified, now that there's no unnamed namespace
-
 namespace boost {
 
-none_t const none = ((none_t)0) ;
+enum none_t {none = 0};
 
 } // namespace boost
 
+
 #endif
 

--- none_t.hpp DELETED ---


-------------------------------------------------------------------------
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