Update of /cvsroot/boost/boost/libs/xpressive/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv14120/libs/xpressive/test

Modified Files:
        Jamfile.v2 proto_fusion.cpp 
Log Message:
rename all proto tag types, move into tag:: namespace

Index: Jamfile.v2
===================================================================
RCS file: /cvsroot/boost/boost/libs/xpressive/test/Jamfile.v2,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- Jamfile.v2  10 Nov 2006 02:22:15 -0000      1.18
+++ Jamfile.v2  1 Dec 2006 05:46:06 -0000       1.19
@@ -11,6 +11,7 @@
         <toolset>msvc-7.1:<debug-symbols>off
         <toolset>msvc-8.0:<define>_SCL_SECURE_NO_DEPRECATE
         <toolset>msvc-8.0:<define>_CRT_SECURE_NO_DEPRECATE
+        <toolset>gcc:<cxxflags>-ftemplate-depth-1024
         <library>/boost/test//boost_unit_test_framework
         <link>static
     ;

Index: proto_fusion.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/xpressive/test/proto_fusion.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- proto_fusion.cpp    20 Nov 2006 03:41:06 -0000      1.6
+++ proto_fusion.cpp    1 Dec 2006 05:46:06 -0000       1.7
@@ -21,17 +21,17 @@
 boost::proto::meta::terminal<char>::type h_ = {'h'};
 boost::proto::meta::terminal<char>::type i_ = {'i'};
 
-std::ostream &operator <<(std::ostream &sout, boost::proto::terminal_tag)
+std::ostream &operator <<(std::ostream &sout, boost::proto::tag::terminal)
 {
     return sout;
 }
 
-std::ostream &operator <<(std::ostream &sout, boost::proto::right_shift_tag)
+std::ostream &operator <<(std::ostream &sout, boost::proto::tag::right_shift)
 {
     return sout << ">>";
 }
 
-std::ostream &operator <<(std::ostream &sout, boost::proto::bitor_tag)
+std::ostream &operator <<(std::ostream &sout, boost::proto::tag::bitwise_or)
 {
     return sout << "|";
 }


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