From: Nathan Binkert Date: Sat, 7 Mar 2009 22:30:52 +0000 (-0800) Subject: build: fix errors for compilers other than g++ 4.3 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=66a85b54e2f59e13b726f05a30bb115f2fb10dbc;p=gem5.git build: fix errors for compilers other than g++ 4.3 --- diff --git a/src/base/cp_annotate.hh b/src/base/cp_annotate.hh index 9ec39b6cb..13ced82de 100644 --- a/src/base/cp_annotate.hh +++ b/src/base/cp_annotate.hh @@ -53,7 +53,7 @@ class ThreadContext; #if !CP_ANNOTATE -class CPA : SimObject +class CPA { public: enum flags { diff --git a/src/base/statistics.hh b/src/base/statistics.hh index 6240be7a2..827c1d311 100644 --- a/src/base/statistics.hh +++ b/src/base/statistics.hh @@ -2495,7 +2495,7 @@ class VectorDistribution : public VectorDistBase params->min = min; params->max = max; params->bucket_size = bkt; - params->buckets = rint((max - min) / bkt + 1.0); + params->buckets = (size_type)rint((max - min) / bkt + 1.0); this->setParams(params); this->doInit(size); return this->self();