diff options
author | Alp Toker <alp@nuanti.com> | 2013-12-17 17:25:19 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2013-12-17 17:25:19 +0000 |
commit | b164a349f98b556b1fb6e595a7c4784b47853ec8 (patch) | |
tree | 4037337afad06ae8bcd775f052603778bc82108f /clang/lib/Parse/Parser.cpp | |
parent | 8cc8b35a73452768632015834641748bf76324dc (diff) | |
download | bcm5719-llvm-b164a349f98b556b1fb6e595a7c4784b47853ec8.tar.gz bcm5719-llvm-b164a349f98b556b1fb6e595a7c4784b47853ec8.zip |
Fix indentation from r197490 plus some typos
llvm-svn: 197507
Diffstat (limited to 'clang/lib/Parse/Parser.cpp')
-rw-r--r-- | clang/lib/Parse/Parser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Parse/Parser.cpp b/clang/lib/Parse/Parser.cpp index f7c0f3f550e..79a02eea423 100644 --- a/clang/lib/Parse/Parser.cpp +++ b/clang/lib/Parse/Parser.cpp @@ -1443,8 +1443,8 @@ Parser::TryAnnotateName(bool IsAddressOfOperand, // Look up and classify the identifier. We don't perform any typo-correction // after a scope specifier, because in general we can't recover from typos - // there (eg, after correcting 'A::tempalte B<X>::C', we would need to jump - // back into scope specifier parsing). + // there (eg, after correcting 'A::tempalte B<X>::C' [sic], we would need to + // jump back into scope specifier parsing). Sema::NameClassification Classification = Actions.ClassifyName(getCurScope(), SS, Name, NameLoc, Next, IsAddressOfOperand, SS.isEmpty() ? CCC : 0); |