diff options
author | Carl Worth <cworth@raht.cworth.org> | 2006-03-22 23:12:23 -0800 |
---|---|---|
committer | Carl Worth <cworth@raht.cworth.org> | 2006-03-22 23:12:23 -0800 |
commit | cabe94a15c277bb8a5f0c71f25cc8bc9e22ecb41 (patch) | |
tree | 66cbf7fd861b48315968428d07d7d99fe87bffb2 /src/cairo-hash-private.h | |
parent | a193f70b94667808f573caa5b82a1bf50281555e (diff) |
Make all hash/cache keys_equal function accept const pointers.
Diffstat (limited to 'src/cairo-hash-private.h')
-rw-r--r-- | src/cairo-hash-private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-hash-private.h b/src/cairo-hash-private.h index 6dc9c907..617b8410 100644 --- a/src/cairo-hash-private.h +++ b/src/cairo-hash-private.h @@ -85,7 +85,7 @@ typedef struct _cairo_hash_entry { } cairo_hash_entry_t; typedef cairo_bool_t -(*cairo_hash_keys_equal_func_t) (void *key_a, void *key_b); +(*cairo_hash_keys_equal_func_t) (const void *key_a, const void *key_b); typedef cairo_bool_t (*cairo_hash_predicate_func_t) (void *entry); |