diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-10-03 01:58:42 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-10-03 01:58:42 +0000 |
commit | d64c26f6676eef69d1713f353ca8a3c2fe963f17 (patch) | |
tree | 005dcf62e4d364865a2cf0009061cd567a1113a6 /include/clang/Serialization/Module.h | |
parent | 50e71f1040a4cbc13245f897f9056e846345688d (diff) |
Set the file entry for a Module* that was created during deserialization
of a module file.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165086 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Serialization/Module.h')
-rw-r--r-- | include/clang/Serialization/Module.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Serialization/Module.h b/include/clang/Serialization/Module.h index 653fe222b6..87a0e40e9e 100644 --- a/include/clang/Serialization/Module.h +++ b/include/clang/Serialization/Module.h @@ -25,6 +25,7 @@ namespace clang { +class FileEntry; class DeclContext; class Module; template<typename Info> class OnDiskChainedHashTable; @@ -74,6 +75,9 @@ public: /// \brief The file name of the module file. std::string FileName; + /// \brief The file entry for the module file. + const FileEntry *File; + /// \brief Whether this module has been directly imported by the /// user. bool DirectlyImported; |