diff options
| author | Markus Armbruster <armbru@redhat.com> | 2020-03-17 12:54:38 +0100 |
|---|---|---|
| committer | Markus Armbruster <armbru@redhat.com> | 2020-03-17 19:58:34 +0100 |
| commit | 7b3bc9e28f366e591ae6da0d0c58d05d9f487ced (patch) | |
| tree | 7d538af7234ed6126240cf4478d726fef8d47c0d /scripts/qapi/types.py | |
| parent | 013b4efc9be9af8276bd891cd52267d409f1d712 (diff) | |
| download | focaccia-qemu-7b3bc9e28f366e591ae6da0d0c58d05d9f487ced.tar.gz focaccia-qemu-7b3bc9e28f366e591ae6da0d0c58d05d9f487ced.zip | |
qapi: Consistently put @features parameter right after @ifcond
Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-Id: <20200317115459.31821-14-armbru@redhat.com>
Diffstat (limited to 'scripts/qapi/types.py')
| -rw-r--r-- | scripts/qapi/types.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/qapi/types.py b/scripts/qapi/types.py index d0d5c03646..3ad33af4ee 100644 --- a/scripts/qapi/types.py +++ b/scripts/qapi/types.py @@ -289,8 +289,8 @@ class QAPISchemaGenTypeVisitor(QAPISchemaModularCVisitor): self._genh.add(gen_array(name, element_type)) self._gen_type_cleanup(name) - def visit_object_type(self, name, info, ifcond, base, members, variants, - features): + def visit_object_type(self, name, info, ifcond, features, + base, members, variants): # Nothing to do for the special empty builtin if name == 'q_empty': return |