Skip to content

Commit e1353d3

Browse files
committed
[gardening] Remove two unneeded llvm::.
These are injected into the swift namespace in swift/Basic/LLVM.h, so llvm:: is unnecessary here.
1 parent 885dda1 commit e1353d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/SIL/SILOwnershipVerifier.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ namespace {
7878
// refactored into a large state object that is used by functions.
7979
class SILValueOwnershipChecker {
8080
/// The result of performing the check.
81-
llvm::Optional<bool> result;
81+
Optional<bool> result;
8282

8383
/// A cache of dead-end basic blocks that we use to determine if we can
8484
/// ignore "leaks".
@@ -744,7 +744,7 @@ void SILValue::verifyOwnership(DeadEndBlocks *deadEndBlocks) const {
744744
errorBehavior = ErrorBehaviorKind::PrintMessageAndAssert;
745745
}
746746

747-
llvm::SmallPtrSet<SILBasicBlock *, 32> liveBlocks;
747+
SmallPtrSet<SILBasicBlock *, 32> liveBlocks;
748748
if (deadEndBlocks) {
749749
SILValueOwnershipChecker(*deadEndBlocks, *this, errorBehavior,
750750
liveBlocks)

0 commit comments

Comments
 (0)