File tree 1 file changed +4
-2
lines changed
src/lib/Metadata/Finalizers
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,8 @@ struct SymbolIDCompareFn
119
119
*lhsOp == OperatorKind::Greater ||
120
120
*lhsOp == OperatorKind::LessEqual ||
121
121
*lhsOp == OperatorKind::GreaterEqual ||
122
- *lhsOp == OperatorKind::Spaceship);
122
+ *lhsOp == OperatorKind::Spaceship ||
123
+ *lhsOp == OperatorKind::LessLess);
123
124
bool const rhsIsRel = rhsOp && (
124
125
*rhsOp == OperatorKind::Exclaim ||
125
126
*rhsOp == OperatorKind::EqualEqual ||
@@ -128,7 +129,8 @@ struct SymbolIDCompareFn
128
129
*rhsOp == OperatorKind::Greater ||
129
130
*rhsOp == OperatorKind::LessEqual ||
130
131
*rhsOp == OperatorKind::GreaterEqual ||
131
- *rhsOp == OperatorKind::Spaceship);
132
+ *rhsOp == OperatorKind::Spaceship ||
133
+ *rhsOp == OperatorKind::LessLess);
132
134
if (lhsIsRel != rhsIsRel)
133
135
{
134
136
return !lhsIsRel;
You can’t perform that action at this time.
0 commit comments