summaryrefslogtreecommitdiffstats
path: root/qapi
diff options
context:
space:
mode:
authorMarkus Armbruster2014-05-07 09:53:45 +0200
committerLuiz Capitulino2014-05-15 20:00:45 +0200
commitcbc95538eda98929d2c5c8ff0d9db9043fcf1ae6 (patch)
tree763f19d1ab08d828ca04a182c3a4067fda27d80c /qapi
parentqapi: Normalize marshalling's visitor initialization and cleanup (diff)
downloadqemu-cbc95538eda98929d2c5c8ff0d9db9043fcf1ae6.tar.gz
qemu-cbc95538eda98929d2c5c8ff0d9db9043fcf1ae6.tar.xz
qemu-cbc95538eda98929d2c5c8ff0d9db9043fcf1ae6.zip
qapi: Remove unused Visitor callbacks start_handle(), end_handle()
These have never been called or implemented by anything, and their intended use is undocumented, like all of the visitor API. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r--qapi/qapi-visit-core.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/qapi/qapi-visit-core.c b/qapi/qapi-visit-core.c
index 6451a21a28..1f7475c0f3 100644
--- a/qapi/qapi-visit-core.c
+++ b/qapi/qapi-visit-core.c
@@ -17,21 +17,6 @@
#include "qapi/visitor.h"
#include "qapi/visitor-impl.h"
-void visit_start_handle(Visitor *v, void **obj, const char *kind,
- const char *name, Error **errp)
-{
- if (!error_is_set(errp) && v->start_handle) {
- v->start_handle(v, obj, kind, name, errp);
- }
-}
-
-void visit_end_handle(Visitor *v, Error **errp)
-{
- if (!error_is_set(errp) && v->end_handle) {
- v->end_handle(v, errp);
- }
-}
-
void visit_start_struct(Visitor *v, void **obj, const char *kind,
const char *name, size_t size, Error **errp)
{