Skip to content

Commit c45e9c2

Browse files
committed
[cxx-interop] Fix mismatched quotation mark in a request message
Discovered this by examining a crash log.
1 parent 7c16527 commit c45e9c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/AST/NameLookupRequests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ void swift::simple_display(llvm::raw_ostream &out,
511511
out << "Finding custom (foreign reference) reference counting operation '"
512512
<< (desc.kind == CustomRefCountingOperationKind::retain ? "retain"
513513
: "release")
514-
<< "for '" << desc.decl->getNameStr() << "'.\n";
514+
<< "' for '" << desc.decl->getNameStr() << "'.\n";
515515
}
516516

517517
SourceLoc

0 commit comments

Comments
 (0)