diff options
author | Chuanqi Xu <yedeng.yd@linux.alibaba.com> | 2022-10-27 16:34:10 +0800 |
---|---|---|
committer | Chuanqi Xu <yedeng.yd@linux.alibaba.com> | 2022-10-27 16:40:26 +0800 |
commit | e8541e4b42c54e106940b846123508742e026b7d (patch) | |
tree | ddbd0bc1a6634912df0dcc1660b9c743c2c749d9 /clang/lib/Lex/HeaderSearch.cpp | |
parent | b6d3ae3d3de0ce8015e422592aa467b99d4b0b6d (diff) | |
download | llvm-e8541e4b42c54e106940b846123508742e026b7d.zip llvm-e8541e4b42c54e106940b846123508742e026b7d.tar.gz llvm-e8541e4b42c54e106940b846123508742e026b7d.tar.bz2 |
[NFC] [Modules] Rename modules related things in Preprocessor and AffectingModules
Rename module related things according to the consensus in
https://discourse.llvm.org/t/rfc-unifying-the-terminology-about-modules-in-clang/66054/
to reduce further confusings.
This only renames things I can make sure. It doesn't mean all the names
in Preprocessor are correct now.
Diffstat (limited to 'clang/lib/Lex/HeaderSearch.cpp')
-rw-r--r-- | clang/lib/Lex/HeaderSearch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/HeaderSearch.cpp b/clang/lib/Lex/HeaderSearch.cpp index 7230345..65316f4 100644 --- a/clang/lib/Lex/HeaderSearch.cpp +++ b/clang/lib/Lex/HeaderSearch.cpp @@ -1594,7 +1594,7 @@ static bool suggestModule(HeaderSearch &HS, const FileEntry *File, return true; } // TODO: Add this module (or just its module map file) into something like - // `RequestingModule->AffectingModules`. + // `RequestingModule->AffectingClangModules`. return false; } } |