aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_container_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-07-10 12:43:13 +0000
committerChristian Grothoff <christian@grothoff.org>2013-07-10 12:43:13 +0000
commitf3c3d75c394f6840f13de52d605ae429eed70616 (patch)
tree246bf972d745edfdc53cf6cdb6c594e390174262 /src/include/gnunet_container_lib.h
parent0be8753c49d74d78c33f667473d7617eccbc24f8 (diff)
downloadgnunet-f3c3d75c394f6840f13de52d605ae429eed70616.tar.gz
gnunet-f3c3d75c394f6840f13de52d605ae429eed70616.zip
-const where const can
Diffstat (limited to 'src/include/gnunet_container_lib.h')
-rw-r--r--src/include/gnunet_container_lib.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/gnunet_container_lib.h b/src/include/gnunet_container_lib.h
index c9cfa23d2..c36190b7a 100644
--- a/src/include/gnunet_container_lib.h
+++ b/src/include/gnunet_container_lib.h
@@ -597,7 +597,8 @@ GNUNET_CONTAINER_multihashmap_get (const struct GNUNET_CONTAINER_MultiHashMap
597 */ 597 */
598int 598int
599GNUNET_CONTAINER_multihashmap_remove (struct GNUNET_CONTAINER_MultiHashMap *map, 599GNUNET_CONTAINER_multihashmap_remove (struct GNUNET_CONTAINER_MultiHashMap *map,
600 const struct GNUNET_HashCode * key, void *value); 600 const struct GNUNET_HashCode * key,
601 const void *value);
601 602
602/** 603/**
603 * Remove all entries for the given key from the map. 604 * Remove all entries for the given key from the map.
@@ -807,7 +808,8 @@ GNUNET_CONTAINER_multihashmap32_iterate (const struct
807int 808int
808GNUNET_CONTAINER_multihashmap32_remove (struct GNUNET_CONTAINER_MultiHashMap32 809GNUNET_CONTAINER_multihashmap32_remove (struct GNUNET_CONTAINER_MultiHashMap32
809 *map, 810 *map,
810 uint32_t key, void *value); 811 uint32_t key,
812 const void *value);
811 813
812 814
813/** 815/**