From df853f8ed2ce37587585055cf0926e3ced745041 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Mon, 15 Mar 2010 19:30:28 +0000 Subject: [PATCH] widl: error_status_t isn't an allowed conformance type. The FC code requires more than 4 bits to represent it and the correlation descriptor and union formats only allow 4 bits to represent the type referred to. --- tools/widl/parser.y | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/widl/parser.y b/tools/widl/parser.y index 71b7ed69142..8a23a828026 100644 --- a/tools/widl/parser.y +++ b/tools/widl/parser.y @@ -2261,7 +2261,6 @@ static int is_allowed_conf_type(const type_t *type) case TYPE_BASIC_HYPER: case TYPE_BASIC_BYTE: case TYPE_BASIC_WCHAR: - case TYPE_BASIC_ERROR_STATUS_T: return TRUE; default: return FALSE;