diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2014-02-23 19:16:15 -0600 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2014-02-23 19:16:15 -0600 |
commit | cde20fd476a2563bac54bb135fad0dd5e03112db (patch) | |
tree | 865e4768f1de85d69ab191f175ab728d789c73e7 /src/mem/ruby/common/NetDest.hh | |
parent | 82378f7301552683a62c61427faa338ccf9281f6 (diff) | |
download | gem5-cde20fd476a2563bac54bb135fad0dd5e03112db.tar.xz |
ruby: remove few not required #includes
Diffstat (limited to 'src/mem/ruby/common/NetDest.hh')
-rw-r--r-- | src/mem/ruby/common/NetDest.hh | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/mem/ruby/common/NetDest.hh b/src/mem/ruby/common/NetDest.hh index 0e113c269..f982b7c38 100644 --- a/src/mem/ruby/common/NetDest.hh +++ b/src/mem/ruby/common/NetDest.hh @@ -37,9 +37,6 @@ #include <iostream> #include <vector> -#include "debug/RubyMemory.hh" -#include "mem/protocol/MachineType.hh" -#include "mem/ruby/common/Global.hh" #include "mem/ruby/common/Set.hh" #include "mem/ruby/system/MachineID.hh" @@ -111,11 +108,7 @@ class NetDest return vec_index; } - NodeID - bitIndex(NodeID index) const - { - return index; - } + NodeID bitIndex(NodeID index) const { return index; } std::vector<Set> m_bits; // a vector of bit vectors - i.e. Sets }; @@ -129,4 +122,3 @@ operator<<(std::ostream& out, const NetDest& obj) } #endif // __MEM_RUBY_COMMON_NETDEST_HH__ - |