summaryrefslogtreecommitdiff
path: root/src/basic/set.h
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2018-05-02 17:54:52 +0900
committerLennart Poettering <lennart@poettering.net>2018-05-02 10:54:52 +0200
commit76283e5fd46ca449ba4ce482e444119c8b495aa3 (patch)
treeb0d2ef5d2bd493e9a4aae30be3c80de51f6fe6af /src/basic/set.h
parent9fc03455519878d54bfd8098eeb49972ade3ee29 (diff)
downloadsystemd-76283e5fd46ca449ba4ce482e444119c8b495aa3.tar.gz
set: drop unused set_make() function (#8879)
The function causes compiler error when built with '-Ddebug=hashmap', and is not used anymore. Let's drop it.
Diffstat (limited to 'src/basic/set.h')
-rw-r--r--src/basic/set.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/basic/set.h b/src/basic/set.h
index 6f937af929..dc0f1e17e6 100644
--- a/src/basic/set.h
+++ b/src/basic/set.h
@@ -136,5 +136,3 @@ DEFINE_TRIVIAL_CLEANUP_FUNC(Set*, set_free_free);
#define _cleanup_set_free_ _cleanup_(set_freep)
#define _cleanup_set_free_free_ _cleanup_(set_free_freep)
-
-int set_make(Set **ret, const struct hash_ops *hash_ops HASHMAP_DEBUG_PARAMS, void *add, ...);