From 7ab6899538687c9ff3375dd341d03a5dc2712ff1 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 18 Jul 2020 11:17:29 +0200 Subject: [PATCH] builtin: fix compilation (part 1) --- vlib/builtin/map.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/builtin/map.v b/vlib/builtin/map.v index 410c8dd861..0ef6ba7afd 100644 --- a/vlib/builtin/map.v +++ b/vlib/builtin/map.v @@ -4,8 +4,8 @@ module builtin import strings -//import hash.wyhash as hash -import hash +import hash.wyhash as hash +//import hash /* This is a highly optimized hashmap implementation. It has several traits that