diff options
Diffstat (limited to 'include/clang/Frontend/FrontendActions.h')
-rw-r--r-- | include/clang/Frontend/FrontendActions.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/clang/Frontend/FrontendActions.h b/include/clang/Frontend/FrontendActions.h index bf071b3a51..c0ed9fa410 100644 --- a/include/clang/Frontend/FrontendActions.h +++ b/include/clang/Frontend/FrontendActions.h @@ -11,12 +11,13 @@ #define LLVM_CLANG_FRONTEND_FRONTENDACTIONS_H #include "clang/Frontend/FrontendAction.h" -#include "clang/Lex/ModuleMap.h" #include <string> #include <vector> namespace clang { +class Module; + //===----------------------------------------------------------------------===// // Custom Consumer Actions //===----------------------------------------------------------------------===// @@ -93,7 +94,7 @@ public: }; class GenerateModuleAction : public ASTFrontendAction { - ModuleMap::Module *Module; + Module *Module; protected: virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI, |