diff options
author | Nico Weber <nicolasweber@gmx.de> | 2013-01-12 22:51:13 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2013-01-12 22:51:13 +0000 |
commit | ea86563962102149609f6442491d884bc337a175 (patch) | |
tree | b3f25f0f142883811c0dd4b9496d58186cac8c20 /lib/Format/Format.cpp | |
parent | e8ccc81a9f66361450148338b8457dd2c6ad11de (diff) |
Formatter: Remove debugging junk I accidentally landed in r172333.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172334 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Format/Format.cpp')
-rw-r--r-- | lib/Format/Format.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Format/Format.cpp b/lib/Format/Format.cpp index de870900b4..9411932541 100644 --- a/lib/Format/Format.cpp +++ b/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) && |