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.
2 parents f946392 + 3d14401 commit f5abd61Copy full SHA for f5abd61
lib/ClangImporter/ClangImporter.cpp
@@ -3157,13 +3157,8 @@ void ClangModuleUnit::lookupObjCMethods(
3157
(void)owner.importDecl(objcMethod->findPropertyDecl(true),
3158
owner.CurrentVersion);
3159
3160
- // Import it.
3161
- // FIXME: Retrying a failed import works around recursion bugs in the Clang
3162
- // importer.
3163
auto imported =
3164
owner.importDecl(objcMethod, owner.CurrentVersion);
3165
- if (!imported)
3166
- imported = owner.importDecl(objcMethod, owner.CurrentVersion);
3167
if (!imported) continue;
3168
3169
if (auto func = dyn_cast<AbstractFunctionDecl>(imported))
0 commit comments