diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-02-17 07:48:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-17 07:48:06 +0100 |
commit | 36986531afe3996de05640ff02088d18b24d409c (patch) | |
tree | 27bd4f630dda96d028aa0efd7752000844ac996b /core/object.h | |
parent | 903a3aa5f0e128abb1fb752c10b343b34af8f799 (diff) | |
parent | b696beea65bbffd31edac169ccf9708f46ab9652 (diff) |
Merge pull request #7815 from hpvb/fix-7354
Correct hash behavior for floating point numbers
Diffstat (limited to 'core/object.h')
-rw-r--r-- | core/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object.h b/core/object.h index ba4fa62e1a..3fe31bee6b 100644 --- a/core/object.h +++ b/core/object.h @@ -680,7 +680,7 @@ class ObjectDB { unsigned long i; } u; u.p=p_obj; - return HashMapHahserDefault::hash((uint64_t)u.i); + return HashMapHasherDefault::hash((uint64_t)u.i); } }; |