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/Frontend/ASTUnit.h | |
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/Frontend/ASTUnit.h')
-rw-r--r-- | include/clang/Frontend/ASTUnit.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Frontend/ASTUnit.h b/include/clang/Frontend/ASTUnit.h index 3701cdc2e4..9a02c0c2b8 100644 --- a/include/clang/Frontend/ASTUnit.h +++ b/include/clang/Frontend/ASTUnit.h @@ -839,7 +839,8 @@ public: } virtual void makeModuleVisible(Module *Mod, - Module::NameVisibilityKind Visibility) { } + Module::NameVisibilityKind Visibility, + SourceLocation ImportLoc) { } }; |