Skip to content

Commit 50c1541

Browse files
committed
fix format
1 parent 96da7db commit 50c1541

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/PrintAsClang/DeclAndTypePrinter.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1112,7 +1112,8 @@ class DeclAndTypePrinter::Implementation
11121112
if (outputLang == OutputLanguageMode::Cxx) {
11131113
// Don't expose async functions or @_alwaysEmitIntoClient functions
11141114
// because they're currently unsupported
1115-
if (FD->hasAsync() || FD->getAttrs().hasAttribute<AlwaysEmitIntoClientAttr>()) {
1115+
if (FD->hasAsync() ||
1116+
FD->getAttrs().hasAttribute<AlwaysEmitIntoClientAttr>()) {
11161117
return;
11171118
}
11181119

0 commit comments

Comments
 (0)