Skip to content

Commit 1fc4db5

Browse files
authored
Merge pull request swiftlang#29820 from gottesmm/pr-dbf96393ded5f7ac54e3a3e763de6addba5c30f8
2 parents 03e4a04 + e1353d3 commit 1fc4db5

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)