diff mbox series

[v6,18/25] object: add g_autoptr support

Message ID 20191108150123.12213-19-marcandre.lureau@redhat.com (mailing list archive)
State New, archived
Headers show
Series monitor: add asynchronous command type | expand

Commit Message

Marc-André Lureau Nov. 8, 2019, 3:01 p.m. UTC
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
 include/qom/object.h | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

diff --git a/include/qom/object.h b/include/qom/object.h
index 128d00c77f..f96a44be64 100644
--- a/include/qom/object.h
+++ b/include/qom/object.h
@@ -1747,4 +1747,7 @@  Object *container_get(Object *root, const char *path);
  * Returns the instance_size of the given @typename.
  */
 size_t object_type_get_instance_size(const char *typename);
+
+G_DEFINE_AUTOPTR_CLEANUP_FUNC(Object, object_unref)
+
 #endif