diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-10-24 21:17:16 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-10-24 21:17:16 +0000 |
commit | f91ce7717958c879688150414f998cad23b7b84e (patch) | |
tree | c6315ed679c34f0a7c5967c4f78fbc46e1853a2b /lib/Driver/HTMLDiagnostics.cpp | |
parent | 0b50f5bdd66e3124775eff41f33d6ab0890b315e (diff) |
Expand bubble size by 50%.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58111 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/HTMLDiagnostics.cpp')
-rw-r--r-- | lib/Driver/HTMLDiagnostics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |