summaryrefslogtreecommitdiff
path: root/src/cpu/rubytest/CheckTable.hh
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2010-06-10 23:17:07 -0700
committerNathan Binkert <nate@binkert.org>2010-06-10 23:17:07 -0700
commit006818aeea6176c4500c5f7414e9f2a822c77062 (patch)
tree74adbd6cc14951943bd6eafc4aba2fb98be7a526 /src/cpu/rubytest/CheckTable.hh
parentbc87fa30d72df7db6265be50b2c39dc218076f9f (diff)
downloadgem5-006818aeea6176c4500c5f7414e9f2a822c77062.tar.xz
ruby: get rid of Vector and use STL
add a couple of helper functions to base for deleteing all pointers in a container and outputting containers to a stream
Diffstat (limited to 'src/cpu/rubytest/CheckTable.hh')
-rw-r--r--src/cpu/rubytest/CheckTable.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/rubytest/CheckTable.hh b/src/cpu/rubytest/CheckTable.hh
index a22fa7f73..117fb1276 100644
--- a/src/cpu/rubytest/CheckTable.hh
+++ b/src/cpu/rubytest/CheckTable.hh
@@ -31,8 +31,8 @@
#define __CPU_RUBYTEST_CHECKTABLE_HH__
#include <iostream>
+#include <vector>
-#include "mem/gems_common/Vector.hh"
#include "mem/ruby/common/Global.hh"
class Address;
@@ -63,7 +63,7 @@ class CheckTable
CheckTable(const CheckTable& obj);
CheckTable& operator=(const CheckTable& obj);
- Vector<Check*> m_check_vector;
+ std::vector<Check*> m_check_vector;
Map<Address, Check*>* m_lookup_map_ptr;
int m_num_cpu_sequencers;