Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r60192 - trunk/boost/spirit/home/qi/nonterminal
From: joel_at_[hidden]
Date: 2010-03-05 10:43:14


Author: djowel
Date: 2010-03-05 10:43:14 EST (Fri, 05 Mar 2010)
New Revision: 60192
URL: http://svn.boost.org/trac/boost/changeset/60192

Log:
rules with parameters for char encoding
Text files modified:
   trunk/boost/spirit/home/qi/nonterminal/rule.hpp | 6 ++++--
   1 files changed, 4 insertions(+), 2 deletions(-)

Modified: trunk/boost/spirit/home/qi/nonterminal/rule.hpp
==============================================================================
--- trunk/boost/spirit/home/qi/nonterminal/rule.hpp (original)
+++ trunk/boost/spirit/home/qi/nonterminal/rule.hpp 2010-03-05 10:43:14 EST (Fri, 05 Mar 2010)
@@ -85,21 +85,23 @@
         typedef proto::extends<terminal, this_type> base_type;
         typedef mpl::vector<T1, T2, T3, T4> template_params;
 
- // locals_type is a sequence of types to be used as local variables
+ // The rule's locals_type: a sequence of types to be used as local variables
         typedef typename
             spirit::detail::extract_locals<template_params>::type
         locals_type;
 
- // The skip-parser type
+ // The rule's skip-parser type
         typedef typename
             spirit::detail::extract_component<
                 qi::domain, template_params>::type
         skipper_type;
 
+ // The rule's signature
         typedef typename
             spirit::detail::extract_sig<template_params>::type
         sig_type;
 
+ // The rule's encoding type
         typedef typename
             spirit::detail::extract_encoding<template_params>::type
         encoding_type;


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