Skip to content

Commit d488f31

Browse files
committed
Use String Equality in the Dependency Verifier
1 parent d467346 commit d488f31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Frontend/DependencyVerifier.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ struct Obligation {
188188
}
189189
static bool isEqual(const Obligation::Key &LHS,
190190
const Obligation::Key &RHS) {
191-
return LHS.Name == RHS.Name && LHS.Kind == RHS.Kind;
191+
return LHS.Name.equals(RHS.Name) && LHS.Kind == RHS.Kind;
192192
}
193193
};
194194
};

0 commit comments

Comments
 (0)