From 74546aac0124a5ba09a0e6bfef18dc3e0b7509b8 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Tue, 15 Aug 2006 05:07:15 -0400 Subject: Cleaned up include files and got rid of many using directives in header files. --HG-- extra : convert_revision : 6b11e039cbc061dab75195fa1aebe6ca2cdc6f91 --- src/cpu/o3/decode_impl.hh | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/cpu/o3/decode_impl.hh') diff --git a/src/cpu/o3/decode_impl.hh b/src/cpu/o3/decode_impl.hh index 0bc6a109f..160845378 100644 --- a/src/cpu/o3/decode_impl.hh +++ b/src/cpu/o3/decode_impl.hh @@ -30,8 +30,6 @@ #include "cpu/o3/decode.hh" -using namespace std; - template DefaultDecode::DefaultDecode(Params *params) : renameToDecodeDelay(params->renameToDecodeDelay), @@ -160,7 +158,7 @@ DefaultDecode::setFetchQueue(TimeBuffer *fq_ptr) template void -DefaultDecode::setActiveThreads(list *at_ptr) +DefaultDecode::setActiveThreads(std::list *at_ptr) { DPRINTF(Decode, "Setting active threads list pointer.\n"); activeThreads = at_ptr; @@ -426,7 +424,7 @@ template bool DefaultDecode::skidsEmpty() { - list::iterator threads = (*activeThreads).begin(); + std::list::iterator threads = (*activeThreads).begin(); while (threads != (*activeThreads).end()) { if (!skidBuffer[*threads++].empty()) @@ -442,7 +440,7 @@ DefaultDecode::updateStatus() { bool any_unblocking = false; - list::iterator threads = (*activeThreads).begin(); + std::list::iterator threads = (*activeThreads).begin(); threads = (*activeThreads).begin(); @@ -599,7 +597,7 @@ DefaultDecode::tick() toRenameIndex = 0; - list::iterator threads = (*activeThreads).begin(); + std::list::iterator threads = (*activeThreads).begin(); sortInsts(); -- cgit v1.2.3