Remove accidentally introduced no-op line.

Was used during experiments, but another if-statements a few lines
before makes it (intentionally) useless.

llvm-svn: 175803
This commit is contained in:
Daniel Jasper 2013-02-21 21:40:48 +00:00
parent c6ebda167f
commit d15b78b921
1 changed files with 0 additions and 1 deletions

View File

@ -1103,7 +1103,6 @@ bool TokenAnnotator::canBreakBefore(const AnnotatedLine &Line,
Right.is(tok::arrow) || Right.is(tok::period) || Right.is(tok::arrow) || Right.is(tok::period) ||
Right.is(tok::colon) || Left.is(tok::coloncolon) || Right.is(tok::colon) || Left.is(tok::coloncolon) ||
Left.is(tok::semi) || Left.is(tok::l_brace) || Left.is(tok::semi) || Left.is(tok::l_brace) ||
Right.is(tok::r_brace) ||
(Left.is(tok::r_paren) && Left.Type != TT_CastRParen && (Left.is(tok::r_paren) && Left.Type != TT_CastRParen &&
Right.is(tok::identifier)) || Right.is(tok::identifier)) ||
(Left.is(tok::l_paren) && !Right.is(tok::r_paren)) || (Left.is(tok::l_paren) && !Right.is(tok::r_paren)) ||