[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC v3 04/32] glib-compat: add G_SIZEOF_MEMBER
From: |
marcandre . lureau |
Subject: |
[RFC v3 04/32] glib-compat: add G_SIZEOF_MEMBER |
Date: |
Tue, 7 Sep 2021 16:19:15 +0400 |
From: Marc-André Lureau <marcandre.lureau@redhat.com>
The macro was introduced in 2.64. Let's redefine it, to allow its usage
with older versions and silence the deprecation warning.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
include/glib-compat.h | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/include/glib-compat.h b/include/glib-compat.h
index 9e95c888f5..e278e09d1d 100644
--- a/include/glib-compat.h
+++ b/include/glib-compat.h
@@ -110,4 +110,11 @@ qemu_g_test_slow(void)
#pragma GCC diagnostic pop
+/* introduced in 2.64 */
+#ifdef G_SIZEOF_MEMBER
+#undef G_SIZEOF_MEMBER
+#endif
+
+#define G_SIZEOF_MEMBER(type, member) sizeof(((type *)0)->member)
+
#endif
--
2.33.0.113.g6c40894d24
- [RFC v3 01/32] RFC: docs: add supported host CPUs section, (continued)
- [RFC v3 01/32] RFC: docs: add supported host CPUs section, marcandre . lureau, 2021/09/07
- [RFC v3 02/32] build-sys: add HAVE_IPPROTO_MPTCP, marcandre . lureau, 2021/09/07
- [RFC v3 03/32] scripts/qapi: teach c_param_type() to return const argument type, marcandre . lureau, 2021/09/07
- [RFC v3 04/32] glib-compat: add G_SIZEOF_MEMBER,
marcandre . lureau <=
- [RFC v3 05/32] scripts/qapi: add QAPISchemaVisitor.visit_module_end, marcandre . lureau, 2021/09/07
- [RFC v3 06/32] scripts/qapi: add a CABI module, marcandre . lureau, 2021/09/07
- [RFC v3 07/32] scripts/qapi: generate CABI dump for C types, marcandre . lureau, 2021/09/07
- [RFC v3 08/32] tests: build qapi-cabi (C ABI dump), marcandre . lureau, 2021/09/07
- [RFC v3 09/32] build-sys: add i686 cpu target, marcandre . lureau, 2021/09/07
- [RFC v3 10/32] build-sys: add --with-rust{-target} & basic build infrastructure, marcandre . lureau, 2021/09/07