From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52402) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZyyUZ-0001Vq-9h for qemu-devel@nongnu.org; Wed, 18 Nov 2015 03:53:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZyyUY-0003yM-Cr for qemu-devel@nongnu.org; Wed, 18 Nov 2015 03:53:27 -0500 Received: from mx1.redhat.com ([209.132.183.28]:47109) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZyyUY-0003xU-7h for qemu-devel@nongnu.org; Wed, 18 Nov 2015 03:53:26 -0500 From: Eric Blake Date: Wed, 18 Nov 2015 01:52:53 -0700 Message-Id: <1447836791-369-19-git-send-email-eblake@redhat.com> In-Reply-To: <1447836791-369-1-git-send-email-eblake@redhat.com> References: <1447836791-369-1-git-send-email-eblake@redhat.com> Subject: [Qemu-devel] [PATCH v12 18/36] qapi: Remove dead visitor code List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: armbru@redhat.com, Michael Roth Commit cbc95538 removed unused start_handle() and end_handle(), but forgot to remove their declarations. Signed-off-by: Eric Blake --- v12 (no v10-11): Split off obvious piece from v9 26/27 v9: no change v8: no change v7: no change v6: no change --- include/qapi/visitor.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/qapi/visitor.h b/include/qapi/visitor.h index cfc19a6..a2ad66c 100644 --- a/include/qapi/visitor.h +++ b/include/qapi/visitor.h @@ -27,9 +27,6 @@ typedef struct GenericList struct GenericList *next; } GenericList; -void visit_start_handle(Visitor *v, void **obj, const char *kind, - const char *name, Error **errp); -void visit_end_handle(Visitor *v, Error **errp); void visit_start_struct(Visitor *v, void **obj, const char *kind, const char *name, size_t size, Error **errp); void visit_end_struct(Visitor *v, Error **errp); -- 2.4.3