diff options
author | Eric Blake <eblake@redhat.com> | 2015-11-18 01:52:53 -0700 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2015-12-17 08:21:27 +0100 |
commit | 7549457200ec3871ee827765f4d3bbc8d903b2ec (patch) | |
tree | 691c0b0b15e606f8146c2c39f37ff85bec6bff58 /include | |
parent | c43567c12042cf401b039bfc94a5f85e1cc1e796 (diff) | |
download | qemu-7549457200ec3871ee827765f4d3bbc8d903b2ec.tar.gz qemu-7549457200ec3871ee827765f4d3bbc8d903b2ec.tar.bz2 qemu-7549457200ec3871ee827765f4d3bbc8d903b2ec.zip |
qapi: Remove dead visitor code
Commit cbc95538 removed unused start_handle() and end_handle(),
but forgot to remove their declarations.
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1447836791-369-19-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/qapi/visitor.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/qapi/visitor.h b/include/qapi/visitor.h index cfc19a616e..a2ad66cf8f 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); |