File tree Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Original file line number Diff line number Diff line change 1414#include < quick-lint-js/port/unreachable.h>
1515
1616namespace quick_lint_js {
17- bool operator ==(Linter_Options lhs, Linter_Options rhs) {
18- return lhs.language == rhs.language &&
19- lhs.print_parser_visits == rhs.print_parser_visits ;
20- }
21-
22- bool operator !=(Linter_Options lhs, Linter_Options rhs) {
23- return !(lhs == rhs);
24- }
25-
2617void parse_and_lint (Padded_String_View code, Diag_Reporter& reporter,
2718 const Global_Declared_Variable_Set& globals,
2819 Linter_Options options) {
Original file line number Diff line number Diff line change @@ -16,9 +16,6 @@ struct Linter_Options {
1616
1717 // If true, print a human-readable representation of parser visits to stderr.
1818 bool print_parser_visits = false ;
19-
20- friend bool operator ==(Linter_Options, Linter_Options);
21- friend bool operator !=(Linter_Options, Linter_Options);
2219};
2320
2421void parse_and_lint (Padded_String_View code, Diag_Reporter&,
You can’t perform that action at this time.
0 commit comments