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

X3.Examples: Context type has changed due to #239

This commit is contained in:
Nikita Kniazev
2018-03-10 17:43:21 +03:00
parent c8c42c006a
commit d15a26eb13
4 changed files with 4 additions and 4 deletions

View File

@@ -405,7 +405,7 @@ supplement the context like this:
typedef x3::context<
error_handler_tag
, std::reference_wrapper<position_cache> const
, std::reference_wrapper<position_cache>
, phrase_context_type>
context_type;

View File

@@ -18,7 +18,7 @@ namespace client { namespace parser
typedef x3::context<
error_handler_tag
, std::reference_wrapper<error_handler_type> const
, std::reference_wrapper<error_handler_type>
, phrase_context_type>
context_type;
}}

View File

@@ -18,7 +18,7 @@ namespace client { namespace parser
typedef x3::context<
error_handler_tag
, std::reference_wrapper<error_handler_type> const
, std::reference_wrapper<error_handler_type>
, phrase_context_type>
context_type;
}}

View File

@@ -27,7 +27,7 @@ namespace rexpr { namespace parser
// Combined Error Handler and Phrase Parse Context
typedef x3::context<
error_handler_tag
, std::reference_wrapper<error_handler_type> const
, std::reference_wrapper<error_handler_type>
, phrase_context_type>
context_type;
}}