diff options
Diffstat (limited to 'src/mem/ruby/common/Histogram.hh')
-rw-r--r-- | src/mem/ruby/common/Histogram.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/ruby/common/Histogram.hh b/src/mem/ruby/common/Histogram.hh index e5cd211d6..81cfbd477 100644 --- a/src/mem/ruby/common/Histogram.hh +++ b/src/mem/ruby/common/Histogram.hh @@ -30,9 +30,9 @@ #define __MEM_RUBY_COMMON_HISTOGRAM_HH__ #include <iostream> +#include <vector> #include "mem/ruby/common/Global.hh" -#include "mem/gems_common/Vector.hh" class Histogram { @@ -56,7 +56,7 @@ class Histogram void print(std::ostream& out) const; private: - Vector<int64> m_data; + std::vector<int64> m_data; int64 m_max; // the maximum value seen so far int64 m_count; // the number of elements added int m_binsize; // the size of each bucket |