summaryrefslogtreecommitdiff
path: root/src/mem/cache/tags/fa_lru.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/cache/tags/fa_lru.cc')
-rw-r--r--src/mem/cache/tags/fa_lru.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mem/cache/tags/fa_lru.cc b/src/mem/cache/tags/fa_lru.cc
index 652abc360..f02b55a8d 100644
--- a/src/mem/cache/tags/fa_lru.cc
+++ b/src/mem/cache/tags/fa_lru.cc
@@ -53,8 +53,6 @@
#include "base/intmath.hh"
#include "base/logging.hh"
-using namespace std;
-
FALRU::FALRU(const Params *p)
: BaseTags(p), cacheBoundaries(nullptr)
{
@@ -122,7 +120,6 @@ FALRU::~FALRU()
void
FALRU::regStats()
{
- using namespace Stats;
BaseTags::regStats();
hits
.init(numCaches+1)
@@ -140,7 +137,7 @@ FALRU::regStats()
;
for (unsigned i = 0; i <= numCaches; ++i) {
- stringstream size_str;
+ std::stringstream size_str;
if (i < 3){
size_str << (1<<(i+7)) <<"K";
} else {