[cfe-commits] r58111 - /cfe/trunk/lib/Driver/HTMLDiagnostics.cpp
Ted Kremenek
kremenek at apple.com
Fri Oct 24 14:17:16 PDT 2008
Author: kremenek
Date: Fri Oct 24 16:17:16 2008
New Revision: 58111
URL: http://llvm.org/viewvc/llvm-project?rev=58111&view=rev
Log:
Expand bubble size by 50%.
Modified:
cfe/trunk/lib/Driver/HTMLDiagnostics.cpp
Modified: cfe/trunk/lib/Driver/HTMLDiagnostics.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Driver/HTMLDiagnostics.cpp?rev=58111&r1=58110&r2=58111&view=diff
==============================================================================
--- cfe/trunk/lib/Driver/HTMLDiagnostics.cpp (original)
+++ cfe/trunk/lib/Driver/HTMLDiagnostics.cpp Fri Oct 24 16:17:16 2008
@@ -403,7 +403,7 @@
// 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;
More information about the cfe-commits
mailing list