2
0
mirror of https://github.com/boostorg/spirit.git synced 2026-01-19 04:42:11 +00:00

X3: Fix another unqualified get call. Closes #526

This commit is contained in:
Nikita Kniazev
2021-02-27 02:43:05 +03:00
parent d90a2010e9
commit bcf1922089

View File

@@ -42,7 +42,7 @@ namespace boost { namespace spirit { namespace x3
inline void on_success(Iterator const& first, Iterator const& last
, T& ast, Context const& context)
{
auto& error_handler = get<error_handler_tag>(context).get();
auto& error_handler = x3::get<error_handler_tag>(context).get();
error_handler.tag(ast, first, last);
}
};