diff options
Diffstat (limited to 'src/libudev/set.c')
-rw-r--r-- | src/libudev/set.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/libudev/set.c b/src/libudev/set.c index 0dcfcb10b9..fc506ea057 100644 --- a/src/libudev/set.c +++ b/src/libudev/set.c @@ -53,10 +53,6 @@ bool set_contains(Set *s, void *value) { return hashmap_contains(MAKE_HASHMAP(s), value); } -void *set_remove(Set *s, void *value) { - return hashmap_remove(MAKE_HASHMAP(s), value); -} - void *set_iterate(Set *s, Iterator *i) { return hashmap_iterate(MAKE_HASHMAP(s), i, NULL); } @@ -64,11 +60,3 @@ void *set_iterate(Set *s, Iterator *i) { void *set_iterate_backwards(Set *s, Iterator *i) { return hashmap_iterate_backwards(MAKE_HASHMAP(s), i, NULL); } - -void set_move(Set *s, Set *other) { - return hashmap_move(MAKE_HASHMAP(s), MAKE_HASHMAP(other)); -} - -void set_clear(Set *s) { - hashmap_clear(MAKE_HASHMAP(s)); -} |