forked from OSchip/llvm-project
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:
parent
c6ebda167f
commit
d15b78b921
|
@ -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)) ||
|
||||||
|
|
Loading…
Reference in New Issue