$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] [Proto]: How to use complex grammars in a domain/extension
From: Mathieu - (ptr.jetable_at_[hidden])
Date: 2010-09-21 04:04:07
It bugged me for a while too ... the only fix I can come with is the
same as yours joel :
struct equation:
proto::or_
<
addition
,proto::equal_to<addition, addition>
> {};
But it's wrong, as in the grammar is right w/o it ... So I figured out
it's a "bug" in proto?
Or I'm missing the obvious too...