summaryrefslogtreecommitdiffstats
path: root/Object.h
diff options
context:
space:
mode:
authorBenny Baumann <BenBE@geshi.org>2020-10-31 20:08:44 +0100
committerBenny Baumann <BenBE@geshi.org>2020-11-02 22:14:26 +0100
commit7ab0915a6c8bab76273085ac563102e7ef8a6756 (patch)
treeac37435093d6728fd8a0527f51184a3328e80c2e /Object.h
parent0806a7958b5b5ee29da043d3e4f3f854c164059d (diff)
Remove unnecessary trailing semicolon on macros
Diffstat (limited to 'Object.h')
-rw-r--r--Object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Object.h b/Object.h
index caa3e919..05a9a72d 100644
--- a/Object.h
+++ b/Object.h
@@ -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;

© 2014-2024 Faster IT GmbH | imprint | privacy policy