diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-11-30 00:36:36 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-11-30 00:36:36 +0000 |
commit | 3d3589db579f7695667b913c5043dd264ebe546f (patch) | |
tree | 6b0b95eaeefc38ddb85a1086076867f91e2e1b7f /include/clang/Frontend/CompilerInstance.h | |
parent | d5a3b7804f1594c9f21c7f2cee0920a66feeb93a (diff) |
Switch the module-loading interfaces and parser from a simple
top-level module name to a module path (e.g., std.vector). We're still
missing a number of pieces for this actually to do something.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145462 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/CompilerInstance.h')
-rw-r--r-- | include/clang/Frontend/CompilerInstance.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/clang/Frontend/CompilerInstance.h b/include/clang/Frontend/CompilerInstance.h index 639c2f68d3..9f982c9265 100644 --- a/include/clang/Frontend/CompilerInstance.h +++ b/include/clang/Frontend/CompilerInstance.h @@ -12,12 +12,14 @@ #include "clang/Frontend/CompilerInvocation.h" #include "clang/Lex/ModuleLoader.h" +#include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/IntrusiveRefCntPtr.h" #include "llvm/ADT/StringRef.h" #include "llvm/ADT/OwningPtr.h" #include <cassert> #include <list> #include <string> +#include <utility> namespace llvm { class raw_fd_ostream; @@ -624,9 +626,7 @@ public: /// } - virtual ModuleKey loadModule(SourceLocation ImportLoc, - IdentifierInfo &ModuleName, - SourceLocation ModuleNameLoc); + virtual ModuleKey loadModule(SourceLocation ImportLoc, ModuleIdPath Path); }; } // end namespace clang |