Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r65324 - in trunk/boost/spirit/home/classic: attribute dynamic/impl
From: hartmut.kaiser_at_[hidden]
Date: 2010-09-06 18:21:41


Author: hkaiser
Date: 2010-09-06 18:21:39 EDT (Mon, 06 Sep 2010)
New Revision: 65324
URL: http://svn.boost.org/trac/boost/changeset/65324

Log:
Spirit: replaced <:: with < :: to avoid forming trigraphs
Text files modified:
   trunk/boost/spirit/home/classic/attribute/closure.hpp | 16 ++++++++--------
   trunk/boost/spirit/home/classic/dynamic/impl/switch.ipp | 6 +++---
   2 files changed, 11 insertions(+), 11 deletions(-)

Modified: trunk/boost/spirit/home/classic/attribute/closure.hpp
==============================================================================
--- trunk/boost/spirit/home/classic/attribute/closure.hpp (original)
+++ trunk/boost/spirit/home/classic/attribute/closure.hpp 2010-09-06 18:21:39 EDT (Mon, 06 Sep 2010)
@@ -1046,14 +1046,14 @@
 
     template <typename BaseT>
     inline f_chseq<
- ::phoenix::actor<container_begin<::phoenix::actor<BaseT> > >,
- ::phoenix::actor<container_end<::phoenix::actor<BaseT> > >
+ ::phoenix::actor<container_begin< ::phoenix::actor<BaseT> > >,
+ ::phoenix::actor<container_end< ::phoenix::actor<BaseT> > >
>
     f_chseq_p(::phoenix::actor<BaseT> const& a)
     {
- typedef ::phoenix::actor<container_begin<::phoenix::actor<BaseT> > >
+ typedef ::phoenix::actor<container_begin< ::phoenix::actor<BaseT> > >
             container_begin_t;
- typedef ::phoenix::actor<container_end<::phoenix::actor<BaseT> > >
+ typedef ::phoenix::actor<container_end< ::phoenix::actor<BaseT> > >
             container_end_t;
         typedef f_chseq<container_begin_t, container_end_t> result_t;
 
@@ -1062,14 +1062,14 @@
 
     template <typename BaseT>
     inline f_strlit<
- ::phoenix::actor<container_begin<::phoenix::actor<BaseT> > >,
- ::phoenix::actor<container_end<::phoenix::actor<BaseT> > >
+ ::phoenix::actor<container_begin< ::phoenix::actor<BaseT> > >,
+ ::phoenix::actor<container_end< ::phoenix::actor<BaseT> > >
>
     f_str_p(::phoenix::actor<BaseT> const& a)
     {
- typedef ::phoenix::actor<container_begin<::phoenix::actor<BaseT> > >
+ typedef ::phoenix::actor<container_begin< ::phoenix::actor<BaseT> > >
             container_begin_t;
- typedef ::phoenix::actor<container_end<::phoenix::actor<BaseT> > >
+ typedef ::phoenix::actor<container_end< ::phoenix::actor<BaseT> > >
             container_end_t;
         typedef f_strlit<container_begin_t, container_end_t> result_t;
 

Modified: trunk/boost/spirit/home/classic/dynamic/impl/switch.ipp
==============================================================================
--- trunk/boost/spirit/home/classic/dynamic/impl/switch.ipp (original)
+++ trunk/boost/spirit/home/classic/dynamic/impl/switch.ipp 2010-09-06 18:21:39 EDT (Mon, 06 Sep 2010)
@@ -523,12 +523,12 @@
 };
 
 template <typename ActorT>
-struct make_cond_functor<::phoenix::actor<ActorT> > {
+struct make_cond_functor< ::phoenix::actor<ActorT> > {
 
- static cond_actor<::phoenix::actor<ActorT> >
+ static cond_actor< ::phoenix::actor<ActorT> >
     do_(::phoenix::actor<ActorT> const &actor)
     {
- return cond_actor<::phoenix::actor<ActorT> >(actor);
+ return cond_actor< ::phoenix::actor<ActorT> >(actor);
     }
 };
 


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