From link , the usage of BOOST_FUSION_ADAPT_STRUCT usage which is
namespace demo
{
struct employee
{
std::string name;
int age;
};
}
BOOST_FUSION_ADAPT_STRUCT(
demo::employee,
(std::string, name)
(int, age))
What will be the actual implementation to replace the use of the BOOST_FUSION_ADAPT_STRUCT macro.
I might depend on compiler/flags. On mine:
Just for readability:
For actual alternatives, see