diff options
author | Sean Hunt <scshunt@csclub.uwaterloo.ca> | 2010-08-30 17:47:05 +0000 |
---|---|---|
committer | Sean Hunt <scshunt@csclub.uwaterloo.ca> | 2010-08-30 17:47:05 +0000 |
commit | 6cf750298d3621d8a10a6dd07fcee8e274b9d94d (patch) | |
tree | 2d4b62e04dd3a48b65398bcc56ecc383719fdad8 /include/clang/Lex/Lexer.h | |
parent | 4a551000bee716ac8b1bbe16134a53f0ad221a5a (diff) |
Revert my user-defined literal commits - r1124{58,60,67} pending
some issues being sorted out.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112493 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Lex/Lexer.h')
-rw-r--r-- | include/clang/Lex/Lexer.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/clang/Lex/Lexer.h b/include/clang/Lex/Lexer.h index e05113da76..9e0fb7ee70 100644 --- a/include/clang/Lex/Lexer.h +++ b/include/clang/Lex/Lexer.h @@ -17,7 +17,6 @@ #include "clang/Lex/PreprocessorLexer.h" #include "clang/Basic/LangOptions.h" #include "llvm/ADT/SmallVector.h" -#include "llvm/Support/Allocator.h" #include <string> #include <vector> #include <cassert> @@ -68,9 +67,6 @@ class Lexer : public PreprocessorLexer { // line" flag set on it. bool IsAtStartOfLine; - // ExtraDataAllocator - An allocator for extra data on a token. - llvm::BumpPtrAllocator ExtraDataAllocator; - Lexer(const Lexer&); // DO NOT IMPLEMENT void operator=(const Lexer&); // DO NOT IMPLEMENT friend class Preprocessor; |