Skip to content

Commit

Permalink
Fix #302
Browse files Browse the repository at this point in the history
  • Loading branch information
wravery committed Jul 18, 2024
1 parent 2d570df commit 6713d77
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions include/graphqlservice/internal/Grammar.h
Original file line number Diff line number Diff line change
Expand Up @@ -453,9 +453,7 @@ struct field_selection_set : seq<star<ignored>, selection_set>
{
};

struct field_content
: sor<seq<field_arguments, opt<field_directives>, field_selection_set>,
seq<field_arguments, field_directives>, field_arguments>
struct field_content : seq<field_arguments, opt<field_directives>, opt<field_selection_set>>
{
};

Expand Down

0 comments on commit 6713d77

Please sign in to comment.