Remove debug print

This commit is contained in:
gingerBill
2020-09-07 12:15:54 +01:00
parent 7f48cf8405
commit f5b8609160
-2
View File
@@ -1460,8 +1460,6 @@ _fnv64a :: proc "contextless" (data: []byte, seed: u64 = 0xcbf29ce484222325) ->
default_hash :: inline proc "contextless" (data: []byte) -> u64 {
context = default_context();
os.write_string(os.stdout, "here - default_hash\n");
return _fnv64a(data);
}
default_hash_string :: inline proc "contextless" (s: string) -> u64 {