diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-07-07 15:46:30 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-07-07 15:46:30 +0000 |
commit | d2bb2c0942d7db565b0f29a8d1640bb97d781cae (patch) | |
tree | 8297eb52afd5bf986fecde989a9a138c6ced0a73 /lib/Frontend/PCHReader.cpp | |
parent | bb80a8e8887c1ec74ee135d4ad9455eafedf1508 (diff) |
Fix broken reading of NestedNameSpecifiers from PCH.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107784 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHReader.cpp')
-rw-r--r-- | lib/Frontend/PCHReader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/PCHReader.cpp b/lib/Frontend/PCHReader.cpp index 2b7dcacd03..e2701cea40 100644 --- a/lib/Frontend/PCHReader.cpp +++ b/lib/Frontend/PCHReader.cpp @@ -3189,8 +3189,8 @@ PCHReader::ReadNestedNameSpecifier(const RecordData &Record, unsigned &Idx) { // No associated value, and there can't be a prefix. break; } - Prev = NNS; } + Prev = NNS; } return NNS; } |