summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/container.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/container.h b/src/common/container.h
index ce1f3d4161..f8660c74d9 100644
--- a/src/common/container.h
+++ b/src/common/container.h
@@ -203,7 +203,9 @@ char *smartlist_join_strings2(smartlist_t *sl, const char *join,
/* Map from const char * to void *. Implemented with a hash table. */
DECLARE_MAP_FNS(strmap_t, const char *, strmap_);
+/* Map from const char[DIGEST_LEN] to void *. Implemented with a hash table. */
DECLARE_MAP_FNS(digestmap_t, const char *, digestmap_);
+
#undef DECLARE_MAP_FNS
void* strmap_set_lc(strmap_t *map, const char *key, void *val);