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 | 141f61d83a23096dcff20df704bdd734c520f535 (patch) | |
tree | ee2383d721a039bb056bd6442a7241aa305d187e /src/mem/ruby/system/NodeID.hh | |
parent | f1c3f3044b73d890ffdfdd113b3b37ae2809d21b (diff) | |
download | gem5-141f61d83a23096dcff20df704bdd734c520f535.tar.xz |
ruby: get rid of gems_common/util.hh and .cc and use stuff in src/base
Diffstat (limited to 'src/mem/ruby/system/NodeID.hh')
-rw-r--r-- | src/mem/ruby/system/NodeID.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/ruby/system/NodeID.hh b/src/mem/ruby/system/NodeID.hh index 4ce8d8a8d..ed3486aaf 100644 --- a/src/mem/ruby/system/NodeID.hh +++ b/src/mem/ruby/system/NodeID.hh @@ -31,7 +31,7 @@ #include <string> -#include "mem/gems_common/util.hh" +#include "base/str.hh" #include "mem/ruby/common/Global.hh" typedef int NodeID; @@ -39,7 +39,7 @@ typedef int NodeID; inline std::string NodeIDToString(NodeID node) { - return int_to_string(node); + return to_string(node); } #endif // __MEM_RUBY_SYSTEM_NODEID_HH__ |