summaryrefslogtreecommitdiffstats
path: root/clang/lib
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2013-01-12 22:51:13 +0000
committerNico Weber <nicolasweber@gmx.de>2013-01-12 22:51:13 +0000
commit92c05391353e457c7316183cd1e2fdd8027b6a05 (patch)
treed7a1aafe8d41cd9b5d562043866cdd5e19f66e95 /clang/lib
parentc9d73611730f648b31981559e491d1be73b64d15 (diff)
downloadbcm5719-llvm-92c05391353e457c7316183cd1e2fdd8027b6a05.tar.gz
bcm5719-llvm-92c05391353e457c7316183cd1e2fdd8027b6a05.zip
Formatter: Remove debugging junk I accidentally landed in r172333.
llvm-svn: 172334
Diffstat (limited to 'clang/lib')
-rw-r--r--clang/lib/Format/Format.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Format/Format.cpp b/clang/lib/Format/Format.cpp
index de870900b41..94119325410 100644
--- a/clang/lib/Format/Format.cpp
+++ b/clang/lib/Format/Format.cpp
@@ -190,7 +190,7 @@ static bool fitsIntoLimit(const AnnotatedToken &RootToken, unsigned Limit) {
/// \brief Returns if a token is an Objective-C selector name.
///
-/// For example, "bar" is a selector name in [foo bar:(4 + 5)]
+/// For example, "bar" is a selector name in [foo bar:(4 + 5)].
static bool isObjCSelectorName(const AnnotatedToken &Tok) {
return Tok.is(tok::identifier) && !Tok.Children.empty() &&
Tok.Children[0].is(tok::colon) &&
OpenPOWER on IntegriCloud