diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-03-02 23:06:15 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-03-02 23:06:15 +0000 |
commit | 4e25ee3b12040a4309543585cfa5b8687cbc213c (patch) | |
tree | e2bf7e76c4cb5809a1962b0d7ba081d50c175257 /lib/Frontend/HTMLDiagnostics.cpp | |
parent | 80bae763da8bf3f3c73379a1e5d10f5bce266bca (diff) |
Resize message bubble back to original size.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65892 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/HTMLDiagnostics.cpp')
-rw-r--r-- | lib/Frontend/HTMLDiagnostics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/HTMLDiagnostics.cpp b/lib/Frontend/HTMLDiagnostics.cpp index 60e99be01f..5fa5ab7f50 100644 --- a/lib/Frontend/HTMLDiagnostics.cpp +++ b/lib/Frontend/HTMLDiagnostics.cpp @@ -388,7 +388,7 @@ void HTMLDiagnostics::HandlePiece(Rewriter& R, FileID BugFileID, // Next, determine the approximate size of the message bubble in em. unsigned em; - const unsigned max_line = 110; + const unsigned max_line = 120; if (max_token >= max_line) em = max_token / 2; |