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/cpu/rubytest/RubyTester.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/cpu/rubytest/RubyTester.hh')
-rw-r--r-- | src/cpu/rubytest/RubyTester.hh | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/cpu/rubytest/RubyTester.hh b/src/cpu/rubytest/RubyTester.hh index f4cf4a04d..634e61f88 100644 --- a/src/cpu/rubytest/RubyTester.hh +++ b/src/cpu/rubytest/RubyTester.hh @@ -30,6 +30,9 @@ #ifndef __CPU_RUBYTEST_RUBYTESTER_HH__ #define __CPU_RUBYTEST_RUBYTESTER_HH__ +#include <iostream> +#include <string> + #include "cpu/rubytest/CheckTable.hh" #include "mem/mem_object.hh" #include "mem/packet.hh" @@ -91,11 +94,11 @@ class RubyTester : public MemObject void incrementCheckCompletions() { m_checks_completed++; } - void printStats(ostream& out) const {} + void printStats(std::ostream& out) const {} void clearStats() {} - void printConfig(ostream& out) const {} + void printConfig(std::ostream& out) const {} - void print(ostream& out) const; + void print(std::ostream& out) const; protected: class CheckStartEvent : public Event @@ -133,11 +136,11 @@ class RubyTester : public MemObject int m_wakeup_frequency; }; -inline ostream& -operator<<(ostream& out, const RubyTester& obj) +inline std::ostream& +operator<<(std::ostream& out, const RubyTester& obj) { obj.print(out); - out << flush; + out << std::flush; return out; } |