diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mem/ruby/system/MachineID.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/ruby/system/MachineID.hh b/src/mem/ruby/system/MachineID.hh index 0bcd10efc..0ad898959 100644 --- a/src/mem/ruby/system/MachineID.hh +++ b/src/mem/ruby/system/MachineID.hh @@ -39,10 +39,10 @@ struct MachineID { MachineType type; //! range: 0 ... number of this machine's components in system - 1 - uint32_t num; + NodeID num; MachineType getType() const { return type; } - uint32_t getNum() const { return num; } + NodeID getNum() const { return num; } }; inline std::string |