1 Feb
2011
1 Feb
'11
1:23 p.m.
Hi!
I am trying to use boost fusion to build [de]serializer for simple types
(int ...) and structs.
I had success until I tried structures holding arrays.
Example:
struct EntryTable
{
unsigned int count;
unsigned int data[4];
};
BOOST_FUSION_ADAPT_STRUCT(
EntryTable,
(unsigned int, count)
(unsigned int, data[4])
)
I would wish to get a fusion::vector