diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2019-11-21 18:49:05 -0800 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2019-11-21 19:07:00 -0800 |
commit | f7170d17a846cd67d70884ba168fd0fad63549ea (patch) | |
tree | 61ecd3ddf3b16930d9ee027e440ee87e6bf25416 /clang/lib/Frontend/Rewrite/FrontendActions.cpp | |
parent | 0b58b80edb81bf8fb401f8a6e057ca9d50abc0f7 (diff) | |
download | bcm5719-llvm-f7170d17a846cd67d70884ba168fd0fad63549ea.tar.gz bcm5719-llvm-f7170d17a846cd67d70884ba168fd0fad63549ea.zip |
clang/Modules: Move Serialization/Module.{h,cpp} to ModuleFile, NFC
Remove some cognitive load by renaming clang/Serialization/Module.h to
clang/Serialization/ModuleFile.h, since it declares the ModuleFile
class. This also makes editing a bit easier, since the basename of the
file no long conflicts with clang/Basic/Module.h, which declares the
Module class. Also move lib/Serialization/Module.cpp to
lib/Serialization/ModuleFile.cpp.
Diffstat (limited to 'clang/lib/Frontend/Rewrite/FrontendActions.cpp')
-rw-r--r-- | clang/lib/Frontend/Rewrite/FrontendActions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/Rewrite/FrontendActions.cpp b/clang/lib/Frontend/Rewrite/FrontendActions.cpp index 549b86edebc..6b6a60869cc 100644 --- a/clang/lib/Frontend/Rewrite/FrontendActions.cpp +++ b/clang/lib/Frontend/Rewrite/FrontendActions.cpp @@ -21,7 +21,7 @@ #include "clang/Rewrite/Frontend/FixItRewriter.h" #include "clang/Rewrite/Frontend/Rewriters.h" #include "clang/Serialization/ASTReader.h" -#include "clang/Serialization/Module.h" +#include "clang/Serialization/ModuleFile.h" #include "clang/Serialization/ModuleManager.h" #include "llvm/ADT/DenseSet.h" #include "llvm/Support/CrashRecoveryContext.h" |