$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Larry Evans (jcampbell3_at_[hidden])
Date: 2002-10-15 00:29:52
A few for Spirit html suggestions:
----------------------------------
preface.html:
In many cases, though, it is unavoidable that advanced but
related topics not be interspersed with the normal flow of
-> related topics are interspersed with the normal flow of
discussion.
quick_start.html:
Under _Trivial Example #1_:
real_p
The above code actually generates a Spirit real_parser
-> The global variable, real_p, is an instance of real_parser,
which parses a floating point number.
basic_concepts.html:
The 1st parse tree after in the _Primitives and Composites_
section does not accurately reflect the grammar:
real_p >> *(',' >> real_p)
It should be something like:
sequence
/ \
real_p longest_alternative
/ \ /|\
eps_p sequence |
/ | |
ch_p(',') | |
| |
| |
sequence |
/ \_____|
real_p