Browse Source

qobject: Drop superfluous includes of qemu-common.h

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20180823164025.12553-53-armbru@redhat.com>
pull/71/merge
Markus Armbruster 8 years ago
parent
commit
812ce33ead
  1. 1
      include/qapi/qmp/json-parser.h
  2. 1
      qobject/json-lexer.c
  3. 1
      qobject/json-streamer.c
  4. 1
      qobject/qbool.c
  5. 1
      qobject/qlist.c
  6. 1
      qobject/qnull.c
  7. 1
      qobject/qnum.c
  8. 1
      qobject/qobject.c
  9. 1
      qobject/qstring.c

1
include/qapi/qmp/json-parser.h

@ -14,7 +14,6 @@
#ifndef QEMU_JSON_PARSER_H
#define QEMU_JSON_PARSER_H
#include "qemu-common.h"
#include "qapi/qmp/json-lexer.h"
typedef struct JSONToken JSONToken;

1
qobject/json-lexer.c

@ -12,7 +12,6 @@
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "qapi/qmp/json-lexer.h"
#include "qapi/qmp/json-streamer.h"

1
qobject/json-streamer.c

@ -12,7 +12,6 @@
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "qapi/error.h"
#include "qapi/qmp/json-lexer.h"
#include "qapi/qmp/json-parser.h"

1
qobject/qbool.c

@ -13,7 +13,6 @@
#include "qemu/osdep.h"
#include "qapi/qmp/qbool.h"
#include "qemu-common.h"
/**
* qbool_from_bool(): Create a new QBool from a bool

1
qobject/qlist.c

@ -17,7 +17,6 @@
#include "qapi/qmp/qnum.h"
#include "qapi/qmp/qstring.h"
#include "qemu/queue.h"
#include "qemu-common.h"
/**
* qlist_new(): Create a new QList

1
qobject/qnull.c

@ -11,7 +11,6 @@
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "qapi/qmp/qnull.h"
QNull qnull_ = {

1
qobject/qnum.c

@ -14,7 +14,6 @@
#include "qemu/osdep.h"
#include "qapi/qmp/qnum.h"
#include "qemu-common.h"
/**
* qnum_from_int(): Create a new QNum from an int64_t

1
qobject/qobject.c

@ -8,7 +8,6 @@
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "qapi/qmp/qbool.h"
#include "qapi/qmp/qnull.h"
#include "qapi/qmp/qnum.h"

1
qobject/qstring.c

@ -12,7 +12,6 @@
#include "qemu/osdep.h"
#include "qapi/qmp/qstring.h"
#include "qemu-common.h"
/**
* qstring_new(): Create a new empty QString

Loading…
Cancel
Save