mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[Gardening] Change calls of getName().isOperator() to isOperator()
This commit is contained in:
@@ -1710,7 +1710,7 @@ void SwiftLangSupport::findRelatedIdentifiersInFile(
|
||||
isa<DestructorDecl>(VD) ||
|
||||
isa<SubscriptDecl>(VD)))
|
||||
return;
|
||||
if (VD->getName().isOperator())
|
||||
if (VD->isOperator())
|
||||
return;
|
||||
|
||||
RelatedIdScanner Scanner(SrcFile, BufferID, VD, Ranges);
|
||||
|
||||
Reference in New Issue
Block a user