diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2011-09-30 12:43:27 -0300 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2011-10-04 11:00:47 -0300 |
commit | 303b54b1a2611eda47abb28546869c49b5664f59 (patch) | |
tree | b6d800d336afe2b461fb6f39f16d797af9a36caf | |
parent | d2a80d6bb3fdf319d28f25eb034b32a9f3da7334 (diff) |
qapi: Automatically generate a _MAX value for enums
It's the last value in the enum and is very useful for the C
implementation.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
-rw-r--r-- | scripts/qapi-types.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/qapi-types.py b/scripts/qapi-types.py index 3bacc0c0da..f64d84c39e 100644 --- a/scripts/qapi-types.py +++ b/scripts/qapi-types.py @@ -91,8 +91,11 @@ typedef enum %(name)s ''', name=name) + # append automatically generated _MAX value + enum_values = values + [ 'MAX' ] + i = 0 - for value in values: + for value in enum_values: enum_decl += mcgen(''' %(abbrev)s_%(value)s = %(i)d, ''', |