
27 May
2004
27 May
'04
10:21 a.m.
Hartmut wrote: | Thorsten Ottosen wrote: | | What am I overlooking? Why | > do we need the current copy/assignment semantics? | | That's to allow to write: | | rule<> a = /* some spirit parser here */; | rule<> b = a; | | Which is needed (or at least handy) in some parser contexts. ok, I guess I just have to start using a typedef: typdef rule<>& rule_type; rule_type foo(); br Thorsten