mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
qapi tests: Elide redundant has_FOO in generated C
The has_FOO for pointer-valued FOO are redundant, except for arrays. They are also a nuisance to work with. Recent commit "qapi: Start to elide redundant has_FOO in generated C" provided the means to elide them step by step. This is the step for tests/qapi-schema/qapi-schema-test.json. Said commit explains the transformation in more detail. The invariant violations mentioned there do not occur here. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20221104160712.3005652-6-armbru@redhat.com>
This commit is contained in:
parent
44ea9d9be3
commit
4b2fc7dbc4
7 changed files with 18 additions and 25 deletions
|
@ -174,7 +174,7 @@ static bool object_type_has_mandatory_members(SchemaInfo *type)
|
|||
g_assert(type->meta_type == SCHEMA_META_TYPE_OBJECT);
|
||||
|
||||
for (tail = type->u.object.members; tail; tail = tail->next) {
|
||||
if (!tail->value->has_q_default) {
|
||||
if (!tail->value->q_default) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue