From 115fe48c765e3ebf574ee5cfe8c25fbb297d0002 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Mon, 6 Dec 2021 16:33:21 +0000 Subject: [PATCH] git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15211 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- os/common/utils/oop/include/oop_base_object.h | 4 ++-- os/common/utils/oop/include/oop_referenced_object.h | 4 ++-- os/common/utils/oop/include/oop_synchronized_object.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/os/common/utils/oop/include/oop_base_object.h b/os/common/utils/oop/include/oop_base_object.h index cb45c61ff..4412c9f54 100644 --- a/os/common/utils/oop/include/oop_base_object.h +++ b/os/common/utils/oop/include/oop_base_object.h @@ -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 diff --git a/os/common/utils/oop/include/oop_referenced_object.h b/os/common/utils/oop/include/oop_referenced_object.h index a2af8f33e..ce6e4a570 100644 --- a/os/common/utils/oop/include/oop_referenced_object.h +++ b/os/common/utils/oop/include/oop_referenced_object.h @@ -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 diff --git a/os/common/utils/oop/include/oop_synchronized_object.h b/os/common/utils/oop/include/oop_synchronized_object.h index 3cd49a8b8..cb43e74c8 100644 --- a/os/common/utils/oop/include/oop_synchronized_object.h +++ b/os/common/utils/oop/include/oop_synchronized_object.h @@ -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