Skip to content

Commit d7649a0

Browse files
committed
[NFC] AttributedTypeRepr: Handle printing of @opened
1 parent 6e764aa commit d7649a0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/AST/TypeRepr.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,8 @@ void AttributedTypeRepr::printAttrs(ASTPrinter &Printer,
225225

226226
if (hasAttr(TAK_async))
227227
Printer.printSimpleAttr("@async") << " ";
228+
if (hasAttr(TAK_opened))
229+
Printer.printSimpleAttr("@opened") << " ";
228230
}
229231

230232
IdentTypeRepr *IdentTypeRepr::create(ASTContext &C,

0 commit comments

Comments
 (0)