commit | f91ce7717958c879688150414f998cad23b7b84e | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Fri Oct 24 21:17:16 2008 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Fri Oct 24 21:17:16 2008 +0000 |
tree | c6315ed679c34f0a7c5967c4f78fbc46e1853a2b | |
parent | 0b50f5bdd66e3124775eff41f33d6ab0890b315e [diff] [blame] |
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 5a6987d..9bd6281 100644 --- a/lib/Driver/HTMLDiagnostics.cpp +++ b/lib/Driver/HTMLDiagnostics.cpp
@@ -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;