Skip to content

Commit dc333cf

Browse files
committed
Merge pull request #1015 from mteper/patch-1
[AST] Resolved name quotation inconsistency
2 parents 534a191 + bc1104d commit dc333cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/AST/ASTDumper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2324,7 +2324,7 @@ class PrintTypeRepr : public TypeReprVisitor<PrintTypeRepr> {
23242324
void visitNamedTypeRepr(NamedTypeRepr *T) {
23252325
printCommon(T, "type_named");
23262326
if (T->hasName())
2327-
OS << " id='" << T->getName();
2327+
OS << " id=" << T->getName();
23282328
if (T->getTypeRepr()) {
23292329
OS << '\n';
23302330
printRec(T->getTypeRepr());

0 commit comments

Comments
 (0)