git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15211 27425a3e-05d8-49a3-a47f-9c15f0e5edd8

This commit is contained in:
Giovanni Di Sirio 2021-12-06 16:33:21 +00:00
parent 61a0f9743e
commit 115fe48c76
3 changed files with 6 additions and 6 deletions

View File

@ -100,13 +100,13 @@ struct __base_object_vmt {
/**
* @brief Structure representing a base object class.
*/
typedef struct base_object {
struct base_object {
/**
* @brief Virtual Methods Table.
*/
const struct __base_object_vmt *vmt;
__base_object_data
} base_object_c;
};
/**
* @name Methods implementations

View File

@ -62,13 +62,13 @@ struct __referenced_object_vmt { \
/**
* @brief Structure representing a referenced object class.
*/
typedef struct referenced_object {
struct referenced_object {
/**
* @brief Virtual Methods Table.
*/
const struct __referenced_object_vmt *vmt;
__referenced_object_data
} referenced_object_c;
};
/**
* @name Methods implementations

View File

@ -62,13 +62,13 @@ struct __synchronized_object_vmt { \
/**
* @brief Structure representing a synchronized object class.
*/
typedef struct synchronized_object {
struct synchronized_object {
/**
* @brief Virtual Methods Table.
*/
const struct __synchronized_object_vmt *vmt;
__synchronized_object_data
} synchronized_object_c;
};
/**
* @name Methods implementations