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

Remove more over-eager expectations.

This commit is contained in:
Zach Laine
2017-05-04 20:57:01 -05:00
parent ef079eb204
commit b2b037421e
2 changed files with 2 additions and 2 deletions

View File

@@ -248,7 +248,7 @@ namespace yaml { namespace parser {
// [88]
tag_directive =
"TAG" > +blank > tag_handle > +blank > tag_prefix
"TAG" >> +blank >> tag_handle >> +blank >> tag_prefix
// TODO [add tag to tag symbol table]
;

View File

@@ -426,7 +426,7 @@ namespace yaml { namespace parser {
// [160]
flow_json_node =
-(omit[properties(_r1, _r2)[_a = _1]] > separate(_r1, _r2))
-(omit[properties(_r1, _r2)[_a = _1]] >> separate(_r1, _r2))
>> flow_json_content(_r1, _r2)
[_val = handle_properties(_a, _1, phx::ref(anchors))]
;