Subject: Re: [boost] [rpc] Introducing Boost.Reflect, Boost.CMT, and Boost.RPC
From: Julien Nitard (julien.nitard_at_[hidden])
Date: 2011-08-28 20:43:00


Hi Daniel,

It seems that the latest update for boost::reflect can't be used with member
functions anymore.

If I define the following:

struct Coin
{
    void f()
    {
    }
};
BOOST_REFLECT(Coin, (f));

GCC complains:
"error: invalid use of non-static member function" (version 4.5, -std=c++0x)

On a separate subject, I've been working a bit on a few additions, notably a
way to "register" types (though I didn't go as far as planned) and some code
to reflect enums. I'll be posting about it soon.

Thanks for your feedback,
Regards,

Julien