diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2009-11-18 13:55:57 -0800 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2009-11-18 13:55:57 -0800 |
commit | b7cc66af311923610d612463d401447fb814f258 (patch) | |
tree | 9919c58d8166d2efbe9f4b9622b13f832edc1e4e /src/mem/ruby/common/NetDest.hh | |
parent | 5492f71755d71ba47f3510e51510b1bbe96b743a (diff) | |
download | gem5-b7cc66af311923610d612463d401447fb814f258.tar.xz |
ruby: Ruby destruction fix.
Diffstat (limited to 'src/mem/ruby/common/NetDest.hh')
-rw-r--r-- | src/mem/ruby/common/NetDest.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/ruby/common/NetDest.hh b/src/mem/ruby/common/NetDest.hh index 1dcee7b7a..7301409ce 100644 --- a/src/mem/ruby/common/NetDest.hh +++ b/src/mem/ruby/common/NetDest.hh @@ -63,7 +63,7 @@ public: NetDest& operator=(const Set& obj); // Destructor - // ~NetDest(); + ~NetDest() { DEBUG_MSG(MEMORY_COMP, LowPrio, "NetDest Destructor"); } // Public Methods void add(MachineID newElement); |