[Fusion] issues when adapting an existing structure
Hi:
I'm trying to adapt a structure for use with spirit.
I have the following code:
struct JAWSFunction {
std::wstring FunctionType;
std::wstring Description;
std::wstring Synopsis;
std::string ReturnType;
std::vector
On Mon, Jul 25, 2011 at 12:28 PM, Sean Farrow
If I compile this with the std::vector
taken out, this works fine. However replacing the vector of pairs doesn’t compile.
How can I get this to work?
Have you tried with a typedef for std::vector
Hi Dominique:
This works fantastically!
Thank you.
Cheers
Sean.
-----Original Message-----
From: boost-users-bounces@lists.boost.org [mailto:boost-users-bounces@lists.boost.org] On Behalf Of Dominique Devienne
Sent: 25 July 2011 18:53
To: boost-users@lists.boost.org
Subject: Re: [Boost-users] [Fusion] issues when adapting an existing structure
On Mon, Jul 25, 2011 at 12:28 PM, Sean Farrow
If I compile this with the std::vector
taken out, this works fine. However replacing the vector of pairs doesn't compile.
How can I get this to work?
Have you tried with a typedef for std::vector
participants (2)
-
Dominique Devienne
-
Sean Farrow