From c1d4d79d9350373569b6764d9c053e7b096bb7bc Mon Sep 17 00:00:00 2001 From: Anand Shukla Date: Fri, 4 Oct 2002 23:56:18 +0000 Subject: added cast to unsigned to compile with gcc3.2 (sparc) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4041 91177308-0d34-0410-b5e6-96231b3b80d8 --- support/lib/Support/Statistic.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'support/lib/Support/Statistic.cpp') diff --git a/support/lib/Support/Statistic.cpp b/support/lib/Support/Statistic.cpp index b6c75c2ade..4db949a99a 100644 --- a/support/lib/Support/Statistic.cpp +++ b/support/lib/Support/Statistic.cpp @@ -70,8 +70,10 @@ void StatisticBase::destroy() const { // Figure out how long the biggest Value and Name fields are... unsigned MaxNameLen = 0, MaxValLen = 0; for (unsigned i = 0, e = AccumStats->size(); i != e; ++i) { - MaxValLen = std::max(MaxValLen, (*AccumStats)[i].Value.length()); - MaxNameLen = std::max(MaxNameLen, std::strlen((*AccumStats)[i].Name)); + MaxValLen = std::max(MaxValLen, + (unsigned)(*AccumStats)[i].Value.length()); + MaxNameLen = std::max(MaxNameLen, + (unsigned)std::strlen((*AccumStats)[i].Name)); } // Sort the fields... -- cgit v1.2.3-18-g5258