Just tried and it compiled past this. More errors though. Thanks!
-Jerry
-----Original Message-----
From: boost-bounces(a)lists.boost.org
[mailto:boost-bounces@lists.boost.org] On Behalf Of Joel de Guzman
Sent: Tuesday, July 13, 2004 5:16 PM
To: boost(a)lists.boost.org
Subject: Re: [boost] Re: compiling spirit parser using aC++
David Abrahams wrote:
> Try this:
>
> typedef typename extract_int_<(MaxDigits >= 0)>::template
> apply<Radix, MinDigits, MaxDigits, Accumulate> extractor;
> extractor::f(scan,n,count);
Forgot the return:
return extractor::f(scan,n,count);
Applied in the CVS.
Thanks!