diff options
author | Jonathan D. Turner <jonathan.d.turner@gmail.com> | 2011-08-05 22:17:03 +0000 |
---|---|---|
committer | Jonathan D. Turner <jonathan.d.turner@gmail.com> | 2011-08-05 22:17:03 +0000 |
commit | e735e2deb9e57d9b62c1258ee236ccfeba8e84b2 (patch) | |
tree | f26b2f682bdf2d4c7d5dea638986937a7abcf6f4 /include/clang/Frontend/PreprocessorOptions.h | |
parent | c25175cb1ac819fd73b33bceb43c84ca17715763 (diff) |
Wire up -import-module to run ReadAST for each module loaded.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136987 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/PreprocessorOptions.h')
-rw-r--r-- | include/clang/Frontend/PreprocessorOptions.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/Frontend/PreprocessorOptions.h b/include/clang/Frontend/PreprocessorOptions.h index f461e9ea07..040b845199 100644 --- a/include/clang/Frontend/PreprocessorOptions.h +++ b/include/clang/Frontend/PreprocessorOptions.h @@ -41,6 +41,7 @@ class PreprocessorOptions { public: std::vector<std::pair<std::string, bool/*isUndef*/> > Macros; std::vector<std::string> Includes; + std::vector<std::string> Modules; std::vector<std::string> MacroIncludes; unsigned UsePredefines : 1; /// Initialize the preprocessor with the compiler |