Remove accidentally introduced no-op line.
authorDaniel Jasper <djasper@google.com>
Thu, 21 Feb 2013 21:40:48 +0000 (21:40 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 21 Feb 2013 21:40:48 +0000 (21:40 +0000)
Was used during experiments, but another if-statements a few lines
before makes it (intentionally) useless.

llvm-svn: 175803

clang/lib/Format/TokenAnnotator.cpp

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