Re: Suggestions for C++ parser generator

2011-08-04 Thread Mark Boyall
In addition: If you change the filename type to a wstring, then compilation fails because the stream operators are hardcoded to output to a narrow stream. Fix: template them on the stream type. On 4 August 2011 17:40, Mark Boyall wrote: > I've been playing with the Variant you posted me, and it'

Re: Suggestions for C++ parser generator

2011-08-04 Thread Mark Boyall
I've been playing with the Variant you posted me, and it's a big improvement. I found it vastly easier to express complex logic in the parser. I wanted to point out a couple of issues that I had: Firstly, the Variant won't build on Visual Studio 2010, because the assignment operator doesn't return