From 5d2dbffbcde80a262c12ec1bc65161853efdf2e6 Mon Sep 17 00:00:00 2001 From: Marian Beermann Date: Sat, 9 Jul 2016 01:26:59 +0200 Subject: [PATCH] hashindex: remove declarations of removed functions --- borg/hashindex.pyx | 2 -- 1 file changed, 2 deletions(-) diff --git a/borg/hashindex.pyx b/borg/hashindex.pyx index f42a90a5d..59741ad6e 100644 --- a/borg/hashindex.pyx +++ b/borg/hashindex.pyx @@ -14,8 +14,6 @@ cdef extern from "_hashindex.c": HashIndex *hashindex_read(char *path) HashIndex *hashindex_init(int capacity, int key_size, int value_size) void hashindex_free(HashIndex *index) - void hashindex_merge(HashIndex *index, HashIndex *other) - void hashindex_add(HashIndex *index, void *key, void *value) int hashindex_get_size(HashIndex *index) int hashindex_write(HashIndex *index, char *path) void *hashindex_get(HashIndex *index, void *key)