From a8cb2d302ea20d7ba1be184973fef29d7cab9407 Mon Sep 17 00:00:00 2001 From: Luiz Capitulino Date: Thu, 26 Jul 2012 21:30:40 -0300 Subject: error: drop unused functions Besides being unused, they operate on the current error format, which is going to be replaced soon. Signed-off-by: Luiz Capitulino Reviewed-by: Markus Armbruster --- error.h | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'error.h') diff --git a/error.h b/error.h index 114e24b34b..5336fc58b2 100644 --- a/error.h +++ b/error.h @@ -50,16 +50,6 @@ Error *error_copy(const Error *err); */ const char *error_get_pretty(Error *err); -/** - * Get an individual named error field. - */ -const char *error_get_field(Error *err, const char *field); - -/** - * Get an individual named error field. - */ -void error_set_field(Error *err, const char *field, const char *value); - /** * Propagate an error to an indirect pointer to an error. This function will * always transfer ownership of the error reference and handles the case where @@ -72,10 +62,4 @@ void error_propagate(Error **dst_err, Error *local_err); */ void error_free(Error *err); -/** - * Determine if an error is of a speific type (based on the qerror format). - * Non-QEMU users should get the `class' field to identify the error type. - */ -bool error_is_type(Error *err, ErrorClass err_class, const char *fmt); - #endif -- cgit v1.2.1