mirror of https://gitee.com/openkylin/qemu.git
Delete duplicate QOM typedefs
Generated using: $ ./scripts/codeconverter/converter.py -i \ --pattern=QOMDuplicatedTypedefs $(git grep -l '' -- '*.[ch]') Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Message-Id: <20200831210740.126168-8-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
94dfc0f343
commit
1c8eef0227
|
@ -39,14 +39,14 @@
|
|||
typedef struct QCryptoSecretKeyring QCryptoSecretKeyring;
|
||||
typedef struct QCryptoSecretKeyringClass QCryptoSecretKeyringClass;
|
||||
|
||||
typedef struct QCryptoSecretKeyring {
|
||||
struct QCryptoSecretKeyring {
|
||||
QCryptoSecretCommon parent;
|
||||
int32_t serial;
|
||||
} QCryptoSecretKeyring;
|
||||
};
|
||||
|
||||
|
||||
typedef struct QCryptoSecretKeyringClass {
|
||||
struct QCryptoSecretKeyringClass {
|
||||
QCryptoSecretCommonClass parent;
|
||||
} QCryptoSecretKeyringClass;
|
||||
};
|
||||
|
||||
#endif /* QCRYPTO_SECRET_KEYRING_H */
|
||||
|
|
Loading…
Reference in New Issue