IDE: Replace some calls to getDeclaredType() with getDeclaredInterfaceType()

This commit is contained in:
Slava Pestov
2020-07-31 13:11:41 -04:00
parent 38477ade9c
commit b4ea644910
3 changed files with 7 additions and 7 deletions

View File

@@ -773,7 +773,7 @@ public:
std::vector<sma::TypeName> Result;
Result.reserve(AllProtocols.size());
for (const auto *PD : AllProtocols) {
Result.emplace_back(convertToTypeName(PD->getDeclaredType()));
Result.emplace_back(convertToTypeName(PD->getDeclaredInterfaceType()));
}
return Result;
}