From: Jean Privat Date: Thu, 20 Aug 2015 16:50:50 +0000 (-0400) Subject: lib/code/standard: hash no more divides object_id by 8 X-Git-Tag: v0.7.8~77^2 X-Git-Url: http://nitlanguage.org lib/code/standard: hash no more divides object_id by 8 Signed-off-by: Jean Privat --- diff --git a/lib/standard/kernel.nit b/lib/standard/kernel.nit index 686334d..b2ac524 100644 --- a/lib/standard/kernel.nit +++ b/lib/standard/kernel.nit @@ -221,7 +221,7 @@ interface Object # and a cause of bugs. # # Without redefinition, `hash` is based on the `object_id` of the instance. - fun hash: Int do return object_id / 8 + fun hash: Int do return object_id end # The main class of the program.