glib: add compatibility interface for g_hash_table_add()
The next commit will use it. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
b9b03ab0d4
commit
8681dffa91
@ -165,6 +165,14 @@ static inline GThread *g_thread_new(const char *name,
|
|||||||
#define CompatGCond GCond
|
#define CompatGCond GCond
|
||||||
#endif /* glib 2.31 */
|
#endif /* glib 2.31 */
|
||||||
|
|
||||||
|
#if !GLIB_CHECK_VERSION(2, 32, 0)
|
||||||
|
/* Beware, function returns gboolean since 2.39.2, see GLib commit 9101915 */
|
||||||
|
static inline void g_hash_table_add(GHashTable *hash_table, gpointer key)
|
||||||
|
{
|
||||||
|
g_hash_table_replace(hash_table, key, key);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef g_assert_true
|
#ifndef g_assert_true
|
||||||
#define g_assert_true(expr) \
|
#define g_assert_true(expr) \
|
||||||
do { \
|
do { \
|
||||||
|
Loading…
Reference in New Issue
Block a user