summaryrefslogtreecommitdiff
path: root/src/mem/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/ruby')
-rw-r--r--src/mem/ruby/common/Address.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/ruby/common/Address.hh b/src/mem/ruby/common/Address.hh
index 23b683d69..89e1929a0 100644
--- a/src/mem/ruby/common/Address.hh
+++ b/src/mem/ruby/common/Address.hh
@@ -277,7 +277,7 @@ template <> struct hash<Address>
return (size_t)s.getAddress();
}
};
-/* namespace __hash_namespace */ }
+} // namespace __hash_namespace
namespace std {
template <> struct equal_to<Address>
@@ -288,6 +288,6 @@ template <> struct equal_to<Address>
return s1 == s2;
}
};
-/* namespace std */ }
+} // namespace std
#endif // __MEM_RUBY_COMMON_ADDRESS_HH__