diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-03-29 16:05:26 -0500 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-03-29 16:05:26 -0500 |
commit | d46d3d6811822d218c137cd6d991e6b4981811d6 (patch) | |
tree | b65fae51ce340e121286c08448152524b1be2c0a /base | |
parent | c5c76cea9871796820f1597f286dcfc21c85a180 (diff) | |
download | gem5-d46d3d6811822d218c137cd6d991e6b4981811d6.tar.xz |
Remove "using namespace std" from global declarations.
--HG--
extra : convert_revision : c580bc6bd308fd502fb5a14ea84b5214e1d2718e
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) |