]> granicus.if.org Git - clang/commitdiff
Remove unused ivar CurTokenIdx.
authorTed Kremenek <kremenek@apple.com>
Thu, 11 Dec 2008 20:39:48 +0000 (20:39 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 11 Dec 2008 20:39:48 +0000 (20:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60896 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Lex/PTHLexer.h
lib/Lex/PTHLexer.cpp

index a1d41b54b6b6bc029f11fd84502f4783a417a2aa..0ae4ac772fbaea185f59089f65230d919b7fbc71 100644 (file)
@@ -25,9 +25,6 @@ class PTHLexer : public PreprocessorLexer {
   /// TokBuf - Buffer from PTH file containing raw token data.
   const char* TokBuf;
 
-  /// CurTokenIdx - This is the index of the next token that Lex will return.
-  unsigned CurTokenIdx;
-        
   PTHLexer(const PTHLexer&);  // DO NOT IMPLEMENT
   void operator=(const PTHLexer&); // DO NOT IMPLEMENT
   
@@ -86,7 +83,7 @@ private:
   Token GetToken();
   
   /// AdvanceToken - Advances the PTHLexer to the next token.
-  void AdvanceToken() { ++CurTokenIdx; NeedsFetching = true; }
+  void AdvanceToken() { NeedsFetching = true; }
   
   bool LexEndOfFile(Token &Result);
 };
index a92d578518ba46b54fb74e138c1a69f79bbdade4..ebbc96801f6eaf6e1ce4a4295bd9d456d5588abd 100644 (file)
@@ -28,7 +28,7 @@ using namespace clang;
 
 PTHLexer::PTHLexer(Preprocessor& pp, SourceLocation fileloc, const char* D,
                    PTHManager& PM)
-  : PreprocessorLexer(&pp, fileloc), TokBuf(D), CurTokenIdx(0), PTHMgr(PM), 
+  : PreprocessorLexer(&pp, fileloc), TokBuf(D), PTHMgr(PM), 
     NeedsFetching(true) {
     // Make sure the EofToken is completely clean.
     EofToken.startToken();