1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Fixed define for g_hash_table_contains (glib < 2.32)

This commit is contained in:
James Booth 2014-05-22 20:03:47 +01:00
parent 6dbcc03543
commit 40299882e8

View File

@ -38,7 +38,7 @@
#if !GLIB_CHECK_VERSION(2,32,0) #if !GLIB_CHECK_VERSION(2,32,0)
#define g_hash_table_add(hash_table, key) p_hash_table_add(hash_table, key) #define g_hash_table_add(hash_table, key) p_hash_table_add(hash_table, key)
#define g_hash_table_contains(hash_table, key) p_hash_table_contains(hash_table, key); #define g_hash_table_contains(hash_table, key) p_hash_table_contains(hash_table, key)
#endif #endif
#ifndef NOTIFY_CHECK_VERSION #ifndef NOTIFY_CHECK_VERSION