summaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorKevin Lim <ktlim@umich.edu>2006-03-29 16:05:26 -0500
committerKevin Lim <ktlim@umich.edu>2006-03-29 16:05:26 -0500
commitd46d3d6811822d218c137cd6d991e6b4981811d6 (patch)
treeb65fae51ce340e121286c08448152524b1be2c0a /base
parentc5c76cea9871796820f1597f286dcfc21c85a180 (diff)
downloadgem5-d46d3d6811822d218c137cd6d991e6b4981811d6.tar.xz
Remove "using namespace std" from global declarations.
--HG-- extra : convert_revision : c580bc6bd308fd502fb5a14ea84b5214e1d2718e
Diffstat (limited to 'base')
-rw-r--r--base/timebuf.hh4
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)