diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2013-02-01 16:36:12 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2013-02-01 16:36:12 +0000 |
commit | 5ebcb20b0331a6e64c213f0bb5f4bed9a9e8eb34 (patch) | |
tree | 45de9a64b0c676dcf9553b9880f7868e98a70c7a /include/clang/Lex | |
parent | 95d912c994832333a998bc7d4ae0e8e830a2d38b (diff) |
For ModuleLoader::makeModuleVisible() also pass the source location where the
module import occurred.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174191 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Lex')
-rw-r--r-- | include/clang/Lex/ModuleLoader.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Lex/ModuleLoader.h b/include/clang/Lex/ModuleLoader.h index 933cfd36e5..93e69a6eed 100644 --- a/include/clang/Lex/ModuleLoader.h +++ b/include/clang/Lex/ModuleLoader.h @@ -82,7 +82,8 @@ public: /// \brief Make the given module visible. virtual void makeModuleVisible(Module *Mod, - Module::NameVisibilityKind Visibility) = 0; + Module::NameVisibilityKind Visibility, + SourceLocation ImportLoc) = 0; }; } |