diff options
author | Nico Weber <nicolasweber@gmx.de> | 2012-11-29 05:29:23 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2012-11-29 05:29:23 +0000 |
commit | 6be9b25cb628f66b8c697182bcf2fd181a3784ad (patch) | |
tree | abda40ddcfafaa455d764332358b7ab8eb84dbb7 | |
parent | 4eb7ee566a39184b01a9712b46be5b56fca3b6fc (diff) | |
download | bcm5719-llvm-6be9b25cb628f66b8c697182bcf2fd181a3784ad.tar.gz bcm5719-llvm-6be9b25cb628f66b8c697182bcf2fd181a3784ad.zip |
Fix sentence construction-o.
llvm-svn: 168855
-rw-r--r-- | clang/lib/Parse/ParseExprCXX.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Parse/ParseExprCXX.cpp b/clang/lib/Parse/ParseExprCXX.cpp index 2f615e150aa..d308d3ed1ad 100644 --- a/clang/lib/Parse/ParseExprCXX.cpp +++ b/clang/lib/Parse/ParseExprCXX.cpp @@ -99,7 +99,7 @@ void Parser::CheckForTemplateAndDigraph(Token &Next, ParsedType ObjectType, /// \brief Emits an error for a left parentheses after a double colon. /// /// When a '(' is found after a '::', emit an error. Attempt to fix the token -/// stream by removing the '(', and the matching ')' if it found. +/// stream by removing the '(', and the matching ')' if found. void Parser::CheckForLParenAfterColonColon() { if (!Tok.is(tok::l_paren)) return; |