From: Ted Kremenek Date: Fri, 24 Oct 2008 21:17:16 +0000 (+0000) Subject: Expand bubble size by 50%. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f91ce7717958c879688150414f998cad23b7b84e;p=clang Expand bubble size by 50%. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58111 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/HTMLDiagnostics.cpp b/lib/Driver/HTMLDiagnostics.cpp index 5a6987dbcb..9bd62815e8 100644 --- a/lib/Driver/HTMLDiagnostics.cpp +++ b/lib/Driver/HTMLDiagnostics.cpp @@ -403,7 +403,7 @@ void HTMLDiagnostics::HandlePiece(Rewriter& R, unsigned BugFileID, // Next, determine the approximate size of the message bubble in em. unsigned em; - const unsigned max_line = 80; + const unsigned max_line = 120; if (max_token >= max_line) em = max_token / 2;