Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r55037 - trunk/boost/spirit/home/karma/auxiliary
From: hartmut.kaiser_at_[hidden]
Date: 2009-07-19 22:44:49


Author: hkaiser
Date: 2009-07-19 22:44:49 EDT (Sun, 19 Jul 2009)
New Revision: 55037
URL: http://svn.boost.org/trac/boost/changeset/55037

Log:
Spirit: corrected base class types
Text files modified:
   trunk/boost/spirit/home/karma/auxiliary/eol.hpp | 2 +-
   trunk/boost/spirit/home/karma/auxiliary/eps.hpp | 2 +-
   2 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/boost/spirit/home/karma/auxiliary/eol.hpp
==============================================================================
--- trunk/boost/spirit/home/karma/auxiliary/eol.hpp (original)
+++ trunk/boost/spirit/home/karma/auxiliary/eol.hpp 2009-07-19 22:44:49 EDT (Sun, 19 Jul 2009)
@@ -32,7 +32,7 @@
     using boost::spirit::eol;
     using boost::spirit::eoi_type;
 
- struct eol_generator : generator<eol_generator>
+ struct eol_generator : primitive_generator<eol_generator>
     {
         template <typename Context, typename Unused>
         struct attribute

Modified: trunk/boost/spirit/home/karma/auxiliary/eps.hpp
==============================================================================
--- trunk/boost/spirit/home/karma/auxiliary/eps.hpp (original)
+++ trunk/boost/spirit/home/karma/auxiliary/eps.hpp 2009-07-19 22:44:49 EDT (Sun, 19 Jul 2009)
@@ -44,7 +44,7 @@
     using boost::spirit::eps;
     using boost::spirit::eps_type;
 
- struct eps_generator : generator<eps_generator>
+ struct eps_generator : primitive_generator<eps_generator>
     {
         template <typename Context, typename Unused>
         struct attribute


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