2015-10-27 01:35:02 +03:00
|
|
|
# Potential C member name collision
|
|
|
|
# We reject use of 'u' as a member name, to allow it for internal use in
|
|
|
|
# putting union branch members in a separate namespace from QMP members.
|
|
|
|
# This is true even for non-unions, because it is possible to convert a
|
2021-09-17 17:31:32 +03:00
|
|
|
# struct to union while remaining backwards compatible in QMP.
|
2015-10-27 01:35:02 +03:00
|
|
|
# TODO - we could munge the member name to 'q_u' to avoid the collision
|
2021-03-23 12:40:03 +03:00
|
|
|
{ 'struct': 'Oops', 'data': { '*u': 'str' } }
|