diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-07-20 22:05:57 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-07-20 22:05:57 +0000 |
commit | 5be8f60126ad16135f0e6535263fe0b2479f666f (patch) | |
tree | b0448125ddfc68fa3aa39272b89f0e427e803e3c /llvm/lib/Support/YAMLParser.cpp | |
parent | f267c87e313cef9a2eb8eccf333231545957932f (diff) | |
download | bcm5719-llvm-5be8f60126ad16135f0e6535263fe0b2479f666f.tar.gz bcm5719-llvm-5be8f60126ad16135f0e6535263fe0b2479f666f.zip |
Remove unused private member variables uncovered by the recent changes to clang's -Wunused-private-field.
llvm-svn: 160583
Diffstat (limited to 'llvm/lib/Support/YAMLParser.cpp')
-rw-r--r-- | llvm/lib/Support/YAMLParser.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Support/YAMLParser.cpp b/llvm/lib/Support/YAMLParser.cpp index 8b7658fd9ca..7c353c89bb8 100644 --- a/llvm/lib/Support/YAMLParser.cpp +++ b/llvm/lib/Support/YAMLParser.cpp @@ -489,9 +489,6 @@ private: /// @brief Can the next token be the start of a simple key? bool IsSimpleKeyAllowed; - /// @brief Is the next token required to start a simple key? - bool IsSimpleKeyRequired; - /// @brief True if an error has occurred. bool Failed; @@ -704,7 +701,6 @@ Scanner::Scanner(StringRef Input, SourceMgr &sm) , FlowLevel(0) , IsStartOfStream(true) , IsSimpleKeyAllowed(true) - , IsSimpleKeyRequired(false) , Failed(false) { InputBuffer = MemoryBuffer::getMemBuffer(Input, "YAML"); SM.AddNewSourceBuffer(InputBuffer, SMLoc()); |