summaryrefslogtreecommitdiffstats
path: root/clang/lib/Parse/ParseDecl.cpp
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2012-07-23 08:59:39 +0000
committerSylvestre Ledru <sylvestre@debian.org>2012-07-23 08:59:39 +0000
commit830885ca64588c925f92010c9e8be09443533995 (patch)
tree9565af71db57c627ff2fa4ab883049dca90ad9f6 /clang/lib/Parse/ParseDecl.cpp
parent35521e231034815b6962eff0dbbd8ee132038784 (diff)
downloadbcm5719-llvm-830885ca64588c925f92010c9e8be09443533995.tar.gz
bcm5719-llvm-830885ca64588c925f92010c9e8be09443533995.zip
Fix a typo (the the => the)
llvm-svn: 160622
Diffstat (limited to 'clang/lib/Parse/ParseDecl.cpp')
-rw-r--r--clang/lib/Parse/ParseDecl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Parse/ParseDecl.cpp b/clang/lib/Parse/ParseDecl.cpp
index 9e58b312e3c..c6a7d05c8f7 100644
--- a/clang/lib/Parse/ParseDecl.cpp
+++ b/clang/lib/Parse/ParseDecl.cpp
@@ -4943,7 +4943,7 @@ void Parser::ParseBracketDeclarator(Declarator &D) {
// Handle the case where we have '[*]' as the array size. However, a leading
// star could be the start of an expression, for example 'X[*p + 4]'. Verify
- // the the token after the star is a ']'. Since stars in arrays are
+ // the token after the star is a ']'. Since stars in arrays are
// infrequent, use of lookahead is not costly here.
if (Tok.is(tok::star) && GetLookAheadToken(1).is(tok::r_square)) {
ConsumeToken(); // Eat the '*'.
OpenPOWER on IntegriCloud