qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] qapi: fix flat union on uncovered branches cond


From: Thomas Huth
Subject: Re: [Qemu-devel] [PATCH] qapi: fix flat union on uncovered branches conditionals
Date: Tue, 18 Dec 2018 11:21:17 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1

On 2018-12-17 21:40, Marc-André Lureau wrote:
> Default branches variant should use the member conditional.
> 
> This fixes compilation with --disable-replication.
> 
> Fixes: 335d10cd8e2c3bb6067804b095aaf6371fc1983e
> 
> Signed-off-by: Marc-André Lureau <address@hidden>
> ---
>  scripts/qapi/common.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/scripts/qapi/common.py b/scripts/qapi/common.py
> index 8c2d97369e..d385a08270 100644
> --- a/scripts/qapi/common.py
> +++ b/scripts/qapi/common.py
> @@ -1460,7 +1460,7 @@ class QAPISchemaObjectTypeVariants(object):
>              cases = set([v.name for v in self.variants])
>              for m in self.tag_member.type.members:
>                  if m.name not in cases:
> -                    v = QAPISchemaObjectTypeVariant(m.name, 'q_empty')
> +                    v = QAPISchemaObjectTypeVariant(m.name, 'q_empty', 
> m.ifcond)
>                      v.set_owner(self.tag_member.owner)
>                      self.variants.append(v)
>          for v in self.variants:

This fixes the compilation problem for me, indeed!

Tested-by: Thomas Huth <address@hidden>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]