commit | 8d8a14a3fc509811f7f66b25e3c8eae450be658c | [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 | 8fd89df91bf24ce2c645b15ac1e26eeb81ea2134 | |
parent | 6e09d8f632deec76e5464dd01eb5f6275f76322f [diff] [blame] |
Expand bubble size by 50%. llvm-svn: 58111
diff --git a/clang/lib/Driver/HTMLDiagnostics.cpp b/clang/lib/Driver/HTMLDiagnostics.cpp index 5a6987d..9bd6281 100644 --- a/clang/lib/Driver/HTMLDiagnostics.cpp +++ b/clang/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;