Remove unnecessary trailing semicolon on macros

This commit is contained in:
Benny Baumann
2020-10-31 20:08:44 +01:00
parent 0806a7958b
commit 7ab0915a6c
3 changed files with 6 additions and 6 deletions

View File

@ -33,7 +33,7 @@ typedef void(*Object_Delete)(Object*);
#define Class(class_) ((const ObjectClass*)(&(class_ ## _class)))
#define AllocThis(class_) (class_*) xMalloc(sizeof(class_)); Object_setClass(this, Class(class_));
#define AllocThis(class_) (class_*) xMalloc(sizeof(class_)); Object_setClass(this, Class(class_))
typedef struct ObjectClass_ {
const void* const extends;