diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-04-22 18:16:18 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-04-22 18:16:18 -0400 |
commit | c30f91c2f634a0b55a9b9b9145b1fbe605bb1a02 (patch) | |
tree | 797d704fd53a4bfd8ea6fae27dcd5e90424a3a03 /base | |
parent | de8baeb58aa2b86c56b0edd6af7541d8fcb4efdb (diff) | |
download | gem5-c30f91c2f634a0b55a9b9b9145b1fbe605bb1a02.tar.xz |
Namespace fix.
base/timebuf.hh:
namespace fix.
--HG--
extra : convert_revision : 38e880b9394cf2923e2fb9775368cd93d719f950
Diffstat (limited to 'base')
-rw-r--r-- | base/timebuf.hh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/base/timebuf.hh b/base/timebuf.hh index 435803fae..f6b5b2781 100644 --- a/base/timebuf.hh +++ b/base/timebuf.hh @@ -31,8 +31,6 @@ #include <vector> -using namespace std; - template <class T> class TimeBuffer { @@ -42,7 +40,7 @@ class TimeBuffer int size; char *data; - vector<char *> index; + std::vector<char *> index; int base; void valid(int idx) |