diff options
Diffstat (limited to 'src/runtime/map_faststr_swiss.go')
| -rw-r--r-- | src/runtime/map_faststr_swiss.go | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/runtime/map_faststr_swiss.go b/src/runtime/map_faststr_swiss.go index 41090d7381..b0fb54315a 100644 --- a/src/runtime/map_faststr_swiss.go +++ b/src/runtime/map_faststr_swiss.go @@ -7,24 +7,26 @@ package runtime import ( + "internal/abi" + "internal/runtime/maps" "unsafe" ) -func mapaccess1_faststr(t *maptype, h *hmap, ky string) unsafe.Pointer { +func mapaccess1_faststr(t *abi.SwissMapType, m *maps.Map, ky string) unsafe.Pointer { throw("mapaccess1_faststr unimplemented") panic("unreachable") } -func mapaccess2_faststr(t *maptype, h *hmap, ky string) (unsafe.Pointer, bool) { +func mapaccess2_faststr(t *abi.SwissMapType, m *maps.Map, ky string) (unsafe.Pointer, bool) { throw("mapaccess2_faststr unimplemented") panic("unreachable") } -func mapassign_faststr(t *maptype, h *hmap, s string) unsafe.Pointer { +func mapassign_faststr(t *abi.SwissMapType, m *maps.Map, s string) unsafe.Pointer { throw("mapassign_faststr unimplemented") panic("unreachable") } -func mapdelete_faststr(t *maptype, h *hmap, ky string) { +func mapdelete_faststr(t *abi.SwissMapType, m *maps.Map, ky string) { throw("mapdelete_faststr unimplemented") } |
