diff options
Diffstat (limited to 'src/cpu/rubytest/CheckTable.hh')
-rw-r--r-- | src/cpu/rubytest/CheckTable.hh | 4 |
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; |