diff options
author | Nathan Binkert <nate@binkert.org> | 2010-04-02 11:20:32 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2010-04-02 11:20:32 -0700 |
commit | f1c3f3044b73d890ffdfdd113b3b37ae2809d21b (patch) | |
tree | 959d71e897a8d01868c8dea8a8b225cbd1b5ce2c /src/mem/ruby/system/PersistentTable.hh | |
parent | be10204729c107b41d5d7487323c732e9fa09df5 (diff) | |
download | gem5-f1c3f3044b73d890ffdfdd113b3b37ae2809d21b.tar.xz |
ruby: get "using namespace" out of headers
In addition to obvious changes, this required a slight change to the slicc
grammar to allow types with :: in them. Otherwise slicc barfs on std::string
which we need for the headers that slicc generates.
Diffstat (limited to 'src/mem/ruby/system/PersistentTable.hh')
-rw-r--r-- | src/mem/ruby/system/PersistentTable.hh | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/src/mem/ruby/system/PersistentTable.hh b/src/mem/ruby/system/PersistentTable.hh index 64203c82c..667d68dcb 100644 --- a/src/mem/ruby/system/PersistentTable.hh +++ b/src/mem/ruby/system/PersistentTable.hh @@ -29,6 +29,8 @@ #ifndef __MEM_RUBY_SYSTEM_PERSISTENTTABLE_HH__ #define __MEM_RUBY_SYSTEM_PERSISTENTTABLE_HH__ +#include <iostream> + #include "mem/gems_common/Map.hh" #include "mem/protocol/AccessType.hh" #include "mem/ruby/common/Address.hh" @@ -39,7 +41,7 @@ class PersistentTableEntry { public: - void print(ostream& out) const {} + void print(std::ostream& out) const {} NetDest m_starving; NetDest m_marked; @@ -67,9 +69,9 @@ class PersistentTable int countStarvingForAddress(const Address& addr) const; int countReadStarvingForAddress(const Address& addr) const; - static void printConfig(ostream& out) {} + static void printConfig(std::ostream& out) {} - void print(ostream& out) const; + void print(std::ostream& out) const; private: // Private copy constructor and assignment operator @@ -80,19 +82,19 @@ class PersistentTable Map<Address, PersistentTableEntry>* m_map_ptr; }; -inline ostream& -operator<<(ostream& out, const PersistentTable& obj) +inline std::ostream& +operator<<(std::ostream& out, const PersistentTable& obj) { obj.print(out); - out << flush; + out << std::flush; return out; } -inline ostream& -operator<<(ostream& out, const PersistentTableEntry& obj) +inline std::ostream& +operator<<(std::ostream& out, const PersistentTableEntry& obj) { obj.print(out); - out << flush; + out << std::flush; return out; } |