summaryrefslogtreecommitdiff
path: root/src/mem/ruby/system/NodeID.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/ruby/system/NodeID.hh')
-rw-r--r--src/mem/ruby/system/NodeID.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mem/ruby/system/NodeID.hh b/src/mem/ruby/system/NodeID.hh
index e5d5f4d98..6191ad489 100644
--- a/src/mem/ruby/system/NodeID.hh
+++ b/src/mem/ruby/system/NodeID.hh
@@ -39,12 +39,14 @@
#ifndef NODEID_H
#define NODEID_H
+#include <string>
+
#include "mem/ruby/common/Global.hh"
#include "mem/gems_common/util.hh"
typedef int NodeID;
extern inline
-string NodeIDToString (NodeID node) { return int_to_string(node); }
+std::string NodeIDToString (NodeID node) { return int_to_string(node); }
#endif //NODEID_H