aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Basic/SourceManager.h
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-12-02 05:34:39 +0000
committerDouglas Gregor <dgregor@apple.com>2009-12-02 05:34:39 +0000
commit4a160e16eb97bee03e36962d11aedc6452710bc5 (patch)
tree9e099de79c2d0eed07b6ee21c7f5c41cba6a63c9 /include/clang/Basic/SourceManager.h
parent2f841ba3b3fd6babe751667470735651907b4001 (diff)
Eliminate the unnecessary FirstFID cache variable from the source manager's ContentCache
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90294 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/SourceManager.h')
-rw-r--r--include/clang/Basic/SourceManager.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/clang/Basic/SourceManager.h b/include/clang/Basic/SourceManager.h
index 67b3d50064..6cf92e674b 100644
--- a/include/clang/Basic/SourceManager.h
+++ b/include/clang/Basic/SourceManager.h
@@ -72,11 +72,6 @@ namespace SrcMgr {
/// if SourceLineCache is non-null.
unsigned NumLines;
- /// FirstFID - First FileID that was created for this ContentCache.
- /// Represents the first source inclusion of the file associated with this
- /// ContentCache.
- mutable FileID FirstFID;
-
/// getBuffer - Returns the memory buffer for the associated content. If
/// there is an error opening this buffer the first time, this returns null
/// and fills in the ErrorStr with a reason.