This commit is contained in:
swrup 2026-02-05 18:09:23 +01:00
parent d974f7b486
commit 74145a7c18

View file

@ -89,17 +89,13 @@ module Cstring = struct
module H32 = struct
include H32
let hash s =
let s = s ^ "\x00" in
hash s
let hash s = hash (s ^ "\x00")
end
module H64 = struct
include H64
let hash s =
let s = s ^ "\x00" in
hash s
let hash s = hash (s ^ "\x00")
end
end