2
0
mirror of https://github.com/boostorg/parser.git synced 2026-01-19 04:22:13 +00:00

Use parser::get() instead of operator[] in the implementation of

param_t::operator().
This commit is contained in:
Zach Laine
2024-03-03 01:23:06 -06:00
parent f05b25ea1d
commit 9af9b5e373

View File

@@ -843,7 +843,7 @@ namespace boost { namespace parser {
template<typename Context>
decltype(auto) operator()(Context const & context) const
{
return parser::_params(context)[llong<I>{}];
return parser::get(parser::_params(context), llong<I>{});
}
};