From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51971) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VR7QJ-0002ec-P0 for qemu-devel@nongnu.org; Tue, 01 Oct 2013 17:24:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VR7QD-0003rF-PQ for qemu-devel@nongnu.org; Tue, 01 Oct 2013 17:24:03 -0400 Received: from mx1.redhat.com ([209.132.183.28]:9706) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VR7QD-0003rA-HK for qemu-devel@nongnu.org; Tue, 01 Oct 2013 17:23:57 -0400 Date: Wed, 2 Oct 2013 00:26:17 +0300 From: "Michael S. Tsirkin" Message-ID: <1380662727-24170-3-git-send-email-mst@redhat.com> References: <1380662727-24170-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1380662727-24170-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PATCH v7 02/27] qom: pull in qemu/typedefs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, afaerber@suse.de, Anthony Liguori , kraxel@redhat.com As usual so we can use typedefs without header dependencies. Reviewed-by: Paolo Bonzini Reviewed-by: Gerd Hoffmann Tested-by: Gerd Hoffmann Signed-off-by: Michael S. Tsirkin --- include/qom/object.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/qom/object.h b/include/qom/object.h index 1a7b71a..5b3b743 100644 --- a/include/qom/object.h +++ b/include/qom/object.h @@ -17,6 +17,7 @@ #include #include #include +#include "qemu/typedefs.h" #include "qemu/queue.h" struct Visitor; -- MST