[NFC][interop] rename the PrintAsObjC library to PrintAsClang

We're starting to support emission of C++ header interfaces, so a language-agnostic name makes more sense
This commit is contained in:
Alex Lorenz
2022-01-20 11:31:58 -08:00
parent 7aa1cd166e
commit e106551028
19 changed files with 35 additions and 35 deletions

View File

@@ -64,7 +64,7 @@ getErrorDomainStringForObjC(const EnumDecl *ED) {
for (const NominalTypeDecl * D = ED;
D != nullptr;
D = D->getDeclContext()->getSelfNominalTypeDecl()) {
// We don't currently PrintAsObjC any types whose parents are private or
// We don't currently PrintAsClang any types whose parents are private or
// fileprivate.
assert(D->getFormalAccess() >= AccessLevel::Internal &&
"We don't currently append private discriminators");