$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] [spirit] first steps
From: Igor R (boost.lists_at_[hidden])
Date: 2010-02-18 16:04:18
> Your last 'text' parser eats your '\r\n' characters. As a result the eol parser fails.
Ah, right, and the last struct field has "\r\n" at the end.
If I change to:
text %= lexeme[+(char_ - ':' - '\r' - '\n')];
the last field is set correctly, but phrase_parse() still returns
false. If I change eol to the explicit "\r\n", it still returns false.