]> git.proxmox.com Git - mirror_qemu.git/blobdiff - qobject/qnull.c
CODING_STYLE: indent example code as all others
[mirror_qemu.git] / qobject / qnull.c
index 9873e266e616ed5082113039c7bdb30616c131da..00870a1824a2100b404beee94dd58938e0aeb721 100644 (file)
  * or later.  See the COPYING.LIB file in the top-level directory.
  */
 
-#include "qemu-common.h"
-#include "qapi/qmp/qobject.h"
+#include "qemu/osdep.h"
+#include "qapi/qmp/qnull.h"
 
-static void qnull_destroy_obj(QObject *obj)
-{
-    assert(0);
-}
-
-static const QType qnull_type = {
-    .code = QTYPE_QNULL,
-    .destroy = qnull_destroy_obj,
+QNull qnull_ = {
+    .base = {
+        .type = QTYPE_QNULL,
+        .refcnt = 1,
+    },
 };
 
-QObject qnull_ = {
-    .type = &qnull_type,
-    .refcnt = 1,
-};
+/**
+ * qnull_is_equal(): Always return true because any two QNull objects
+ * are equal.
+ */
+bool qnull_is_equal(const QObject *x, const QObject *y)
+{
+    return true;
+}