diff options
author | Jan Svoboda <jan_svoboda@apple.com> | 2023-09-06 10:35:54 -0700 |
---|---|---|
committer | Jan Svoboda <jan@svoboda.ai> | 2023-09-06 10:49:48 -0700 |
commit | ddbcc10b9e26b18f6a70e23d0611b9da75ffa52f (patch) | |
tree | d7441ec31d0e7477dcb61534db69c066289db9ac /clang/lib/Sema/SemaModule.cpp | |
parent | 827171398116e1902acc57d5559636cec2e42858 (diff) | |
download | llvm-ddbcc10b9e26b18f6a70e23d0611b9da75ffa52f.zip llvm-ddbcc10b9e26b18f6a70e23d0611b9da75ffa52f.tar.gz llvm-ddbcc10b9e26b18f6a70e23d0611b9da75ffa52f.tar.bz2 |
[clang] NFCI: Adopt `SourceManager::getFileEntryRefForID()`
This commit replaces some calls to the deprecated `FileEntry::getName()` with `FileEntryRef::getName()` by swapping current usages of `SourceManager::getFileEntryForID()` with `SourceManager::getFileEntryRefForID()`. This lowers the number of usages of the deprecated `FileEntry::getName()` from 95 to 50.
Diffstat (limited to 'clang/lib/Sema/SemaModule.cpp')
-rw-r--r-- | clang/lib/Sema/SemaModule.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaModule.cpp b/clang/lib/Sema/SemaModule.cpp index 9b8af60..f8fc271 100644 --- a/clang/lib/Sema/SemaModule.cpp +++ b/clang/lib/Sema/SemaModule.cpp @@ -103,7 +103,8 @@ void Sema::HandleStartOfHeaderUnit() { StringRef HUName = getLangOpts().CurrentModule; if (HUName.empty()) { - HUName = SourceMgr.getFileEntryForID(SourceMgr.getMainFileID())->getName(); + HUName = + SourceMgr.getFileEntryRefForID(SourceMgr.getMainFileID())->getName(); const_cast<LangOptions &>(getLangOpts()).CurrentModule = HUName.str(); } |