Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r55259 - in trunk/boost/spirit/home/qi: directive operator
From: hartmut.kaiser_at_[hidden]
Date: 2009-07-30 14:44:42


Author: hkaiser
Date: 2009-07-29 09:11:29 EDT (Wed, 29 Jul 2009)
New Revision: 55259
URL: http://svn.boost.org/trac/boost/changeset/55259

Log:
Spirit: added missing typenames
Text files modified:
   trunk/boost/spirit/home/qi/directive/repeat.hpp | 2 +-
   trunk/boost/spirit/home/qi/operator/kleene.hpp | 2 +-
   trunk/boost/spirit/home/qi/operator/list.hpp | 2 +-
   trunk/boost/spirit/home/qi/operator/plus.hpp | 2 +-
   4 files changed, 4 insertions(+), 4 deletions(-)

Modified: trunk/boost/spirit/home/qi/directive/repeat.hpp
==============================================================================
--- trunk/boost/spirit/home/qi/directive/repeat.hpp (original)
+++ trunk/boost/spirit/home/qi/directive/repeat.hpp 2009-07-29 09:11:29 EDT (Wed, 29 Jul 2009)
@@ -144,7 +144,7 @@
         {
             // create a local value if Attribute is not unused_type
             typename traits::result_of::value<Attribute>::type val =
- traits::result_of::value<Attribute>::type();
+ typename traits::result_of::value<Attribute>::type();
             typename LoopIter::type i = iter.start();
 
             // parse the minimum required

Modified: trunk/boost/spirit/home/qi/operator/kleene.hpp
==============================================================================
--- trunk/boost/spirit/home/qi/operator/kleene.hpp (original)
+++ trunk/boost/spirit/home/qi/operator/kleene.hpp 2009-07-29 09:11:29 EDT (Wed, 29 Jul 2009)
@@ -59,7 +59,7 @@
         {
             // create a local value if Attribute is not unused_type
             typename traits::result_of::value<Attribute>::type val =
- traits::result_of::value<Attribute>::type();
+ typename traits::result_of::value<Attribute>::type();
 
             // Repeat while subject parses ok
             while (subject.parse(first, last, context, skipper, val))

Modified: trunk/boost/spirit/home/qi/operator/list.hpp
==============================================================================
--- trunk/boost/spirit/home/qi/operator/list.hpp (original)
+++ trunk/boost/spirit/home/qi/operator/list.hpp 2009-07-29 09:11:29 EDT (Wed, 29 Jul 2009)
@@ -61,7 +61,7 @@
         {
             // create a local value if Attribute is not unused_type
             typename traits::result_of::value<Attribute>::type val =
- traits::result_of::value<Attribute>::type();
+ typename traits::result_of::value<Attribute>::type();
 
             if (left.parse(first, last, context, skipper, val))
             {

Modified: trunk/boost/spirit/home/qi/operator/plus.hpp
==============================================================================
--- trunk/boost/spirit/home/qi/operator/plus.hpp (original)
+++ trunk/boost/spirit/home/qi/operator/plus.hpp 2009-07-29 09:11:29 EDT (Wed, 29 Jul 2009)
@@ -59,7 +59,7 @@
         {
             // create a local value if Attribute is not unused_type
             typename traits::result_of::value<Attribute>::type val =
- traits::result_of::value<Attribute>::type();
+ typename traits::result_of::value<Attribute>::type();
 
             if (subject.parse(first, last, context, skipper, val))
             {


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