trying to inline
lambdas (VS2017) (!)
This commit is contained in:
parent
4c9322bc0d
commit
0ad1c58009
1 changed files with 4 additions and 4 deletions
|
@ -43,17 +43,17 @@ BOOST_SPIRIT_DECLARE(generic_json_grammar_type);
|
||||||
BOOST_SPIRIT_DECLARE(generic_json_key_value_type);
|
BOOST_SPIRIT_DECLARE(generic_json_key_value_type);
|
||||||
}
|
}
|
||||||
|
|
||||||
auto assign = [](auto const& ctx)
|
inline auto assign = [](auto const& ctx)
|
||||||
{
|
{
|
||||||
_val(ctx) = _attr(ctx);
|
_val(ctx) = _attr(ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
auto assign_key = [](auto const& ctx)
|
inline auto assign_key = [](auto const& ctx)
|
||||||
{
|
{
|
||||||
std::get<0>(_val(ctx)) = _attr(ctx);
|
std::get<0>(_val(ctx)) = std::move(_attr(ctx));
|
||||||
};
|
};
|
||||||
|
|
||||||
auto assign_value = [](auto const& ctx)
|
inline auto assign_value = [](auto const& ctx)
|
||||||
{
|
{
|
||||||
std::get<1>(_val(ctx)) = std::move(_attr(ctx));
|
std::get<1>(_val(ctx)) = std::move(_attr(ctx));
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue