diff options
author | John Thompson <John.Thompson.JTSoftware@gmail.com> | 2015-02-10 14:45:30 +0000 |
---|---|---|
committer | John Thompson <John.Thompson.JTSoftware@gmail.com> | 2015-02-10 14:45:30 +0000 |
commit | 5d9862f071d895209fcf6de78616207bd15fa4d0 (patch) | |
tree | 457049478b46f688169af6e31f2a5f234768e15a /clang-tools-extra/modularize/ModuleAssistant.cpp | |
parent | e0aa5fea159829dc60e909710d41ac916c019ae3 (diff) | |
download | bcm5719-llvm-5d9862f071d895209fcf6de78616207bd15fa4d0.tar.gz bcm5719-llvm-5d9862f071d895209fcf6de78616207bd15fa4d0.zip |
Renamed module.map to module.modulemap (modularize).
llvm-svn: 228693
Diffstat (limited to 'clang-tools-extra/modularize/ModuleAssistant.cpp')
-rw-r--r-- | clang-tools-extra/modularize/ModuleAssistant.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang-tools-extra/modularize/ModuleAssistant.cpp b/clang-tools-extra/modularize/ModuleAssistant.cpp index 3d2b99414b8..8a9b0c43f73 100644 --- a/clang-tools-extra/modularize/ModuleAssistant.cpp +++ b/clang-tools-extra/modularize/ModuleAssistant.cpp @@ -129,7 +129,7 @@ Module *Module::findSubModule(llvm::StringRef SubName) { // Implementation functions: -// Reserved keywords in module.map syntax. +// Reserved keywords in module.modulemap syntax. // Keep in sync with keywords in module map parser in Lex/ModuleMap.cpp, // such as in ModuleMapParser::consumeToken(). static const char *ReservedNames[] = { @@ -175,7 +175,7 @@ static bool addModuleDescription(Module *RootModule, if (Count != 0) { llvm::errs() << "warning: " << FilePath << " depends on other headers being included first," - " meaning the module.map won't compile." + " meaning the module.modulemap won't compile." " This header will be omitted from the module map.\n"; return true; } |