From: Steve Reinhardt Date: Tue, 16 Dec 2003 04:56:47 +0000 (-0800) Subject: Another fix for gcc 3.3.x. X-Git-Tag: m5_1.0_beta2~231^2~2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=eb1cfea1aaec1584bbc5d2b344eae30b5b29c31f;p=gem5.git Another fix for gcc 3.3.x. base/statistics.hh: Make a couple of typedefs public rather than protected. g++ 3.3 complains otherwise. --HG-- extra : convert_revision : 6a8e4edb0c39474c0e0c7bc474ad0f22b9fb8505 --- diff --git a/base/statistics.hh b/base/statistics.hh index 732d1766a..ed3278e4a 100644 --- a/base/statistics.hh +++ b/base/statistics.hh @@ -1138,6 +1138,8 @@ class Vector2dBase : public DataAccess protected: typedef Storage storage_t; typedef typename storage_t::Params params_t; + + public: typedef typename Bin::VectorBin bin_t; protected: @@ -1675,6 +1677,8 @@ class VectorDistBase : public DataAccess protected: typedef Storage storage_t; typedef typename storage_t::Params params_t; + + public: typedef typename Bin::VectorBin bin_t; protected: