diff options
author | Vlad Serebrennikov <serebrennikov.vladislav@gmail.com> | 2024-05-13 23:37:59 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-13 23:37:59 +0400 |
commit | 31a203fa8af47a8b2e8e357857b114cf90638b2e (patch) | |
tree | 10f503dd3cba055634ac8981fc81b9547b1ff241 /clang/lib/Serialization/ASTCommon.cpp | |
parent | a1d43c14d8a672730af48d946acc41fa01cf301e (diff) | |
download | llvm-31a203fa8af47a8b2e8e357857b114cf90638b2e.zip llvm-31a203fa8af47a8b2e8e357857b114cf90638b2e.tar.gz llvm-31a203fa8af47a8b2e8e357857b114cf90638b2e.tar.bz2 |
[clang] Introduce `SemaObjC` (#89086)
This is continuation of efforts to split `Sema` up, following the
example of OpenMP, OpenACC, etc. Context can be found in
https://github.com/llvm/llvm-project/pull/82217 and
https://github.com/llvm/llvm-project/pull/84184.
I split formatting changes into a separate commit to help reviewing the
actual changes.
Diffstat (limited to 'clang/lib/Serialization/ASTCommon.cpp')
-rw-r--r-- | clang/lib/Serialization/ASTCommon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Serialization/ASTCommon.cpp b/clang/lib/Serialization/ASTCommon.cpp index 63c5140..bc662a8 100644 --- a/clang/lib/Serialization/ASTCommon.cpp +++ b/clang/lib/Serialization/ASTCommon.cpp @@ -341,7 +341,7 @@ serialization::getDefinitiveDeclContext(const DeclContext *DC) { // FIXME: These are defined in one place, but properties in class extensions // end up being back-patched into the main interface. See - // Sema::HandlePropertyInClassExtension for the offending code. + // SemaObjC::HandlePropertyInClassExtension for the offending code. case Decl::ObjCInterface: return nullptr; |