GH-99554: Trim trailing whitespace (GH-100435)

Automerge-Triggered-By: GH:brandtbucher
This commit is contained in:
Brandt Bucher 2022-12-22 12:13:51 -08:00 committed by GitHub
parent 4cc63e0d4e
commit 09edde95f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -153,7 +153,7 @@ location_is_after(location loc1, location loc2) {
static inline bool
same_location(location a, location b)
{
return a.lineno == b.lineno &&
return a.lineno == b.lineno &&
a.end_lineno == b.end_lineno &&
a.col_offset == b.col_offset &&
a.end_col_offset == b.end_col_offset;