From: Daniel Jasper Date: Tue, 29 Apr 2014 15:35:28 +0000 (+0000) Subject: clang-format: Remove accidentally added debug output. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8cf5dd698153be65ef092466c7ef23de129d5708;p=clang clang-format: Remove accidentally added debug output. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@207533 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Format/Format.cpp b/lib/Format/Format.cpp index d1a29ff8a0..3544cff4dd 100644 --- a/lib/Format/Format.cpp +++ b/lib/Format/Format.cpp @@ -499,8 +499,6 @@ public: bool Newline = Indenter->mustBreak(State) || (Indenter->canBreak(State) && State.NextToken->NewlinesBefore > 0); - llvm::errs() << State.NextToken->Tok.getName() << " " - << Indenter->mustBreak(State) << "\n"; Indenter->addTokenToState(State, Newline, /*DryRun=*/false); } }