We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96da7db commit 50c1541Copy full SHA for 50c1541
lib/PrintAsClang/DeclAndTypePrinter.cpp
@@ -1112,7 +1112,8 @@ class DeclAndTypePrinter::Implementation
1112
if (outputLang == OutputLanguageMode::Cxx) {
1113
// Don't expose async functions or @_alwaysEmitIntoClient functions
1114
// because they're currently unsupported
1115
- if (FD->hasAsync() || FD->getAttrs().hasAttribute<AlwaysEmitIntoClientAttr>()) {
+ if (FD->hasAsync() ||
1116
+ FD->getAttrs().hasAttribute<AlwaysEmitIntoClientAttr>()) {
1117
return;
1118
}
1119
0 commit comments