Skip to content

Commit

Permalink
fix(tools/dop/parser_grammar.h): use '=' instead of '=='
Browse files Browse the repository at this point in the history
  • Loading branch information
soonhokong committed Aug 20, 2015
1 parent 0775e7c commit d4810ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/dop/parser_grammar.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ struct str_prec : pegtl::string<'p', 'r', 'e', 'c'> {};
struct str_var : pegtl::string<'v', 'a', 'r'> {};
struct str_cost : pegtl::string<'c', 'o', 's', 't'> {};
struct str_ctr : pegtl::string<'c', 't', 'r'> {};
struct eq : pegtl::string<'=', '='> {};
struct eq : pegtl::string<'='> {};
struct neq : pegtl::string<'!', '='> {};
struct le : pegtl::string<'<', '='> {};
struct ge : pegtl::string<'>', '='> {};
Expand Down

0 comments on commit d4810ee

Please sign in to comment.