Compiling: Fix for 64bit compile on Darwin/OSX 10.5.
--HG-- extra : convert_revision : 1f23f7a3952f55cca8293fb43ae15db42005aeac
This commit is contained in:
parent
422ab8bec0
commit
0673029689
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ namespace m5 {
|
|||
//
|
||||
|
||||
namespace __hash_namespace {
|
||||
#if !defined(__LP64__) && !defined(__alpha__) && !defined(__SUNPRO_CC)
|
||||
#if (__APPLE__) || !defined(__LP64__) && !defined(__alpha__) && !defined(__SUNPRO_CC)
|
||||
template<>
|
||||
struct hash<uint64_t> {
|
||||
size_t operator()(uint64_t r) const {
|
||||
|
|
Loading…
Reference in a new issue