diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2014-12-05 14:52:04 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2014-12-05 14:52:04 +0000 |
commit | aa8362e18eab808b975eddc5489e1e2e311dce85 (patch) | |
tree | 2ed4902424669813cc00cb5098fd04a49ae4690e /lib/Serialization/ASTReaderInternals.h | |
parent | 4af108f4414e16b61fb314e2fcf3ed24ffc5f1af (diff) | |
download | clang-aa8362e18eab808b975eddc5489e1e2e311dce85.tar.gz |
Temporarily reverting r223443 due to bot breakage.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@223465 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Serialization/ASTReaderInternals.h')
-rw-r--r-- | lib/Serialization/ASTReaderInternals.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Serialization/ASTReaderInternals.h b/lib/Serialization/ASTReaderInternals.h index 2f0d37e77c..60494b16d3 100644 --- a/lib/Serialization/ASTReaderInternals.h +++ b/lib/Serialization/ASTReaderInternals.h @@ -194,8 +194,8 @@ typedef llvm::OnDiskChainedHashTable<ASTSelectorLookupTrait> /// /// The on-disk hash table contains a mapping from each header path to /// information about that header (how many times it has been included, its -/// controlling macro, etc.). Note that we actually hash based on the size -/// and mtime, and support "deep" comparisons of file names based on current +/// controlling macro, etc.). Note that we actually hash based on the +/// filename, and support "deep" comparisons of file names based on current /// inode numbers, so that the search can cope with non-normalized path names /// and symlinks. class HeaderFileInfoTrait { @@ -211,7 +211,6 @@ public: off_t Size; time_t ModTime; const char *Filename; - bool Imported; }; typedef const internal_key_type &internal_key_ref; |