From 69f439eff387a6ecb52734e400b297a3c85f2285 Mon Sep 17 00:00:00 2001 From: Daniel Lange Date: Tue, 21 Sep 2021 08:35:19 +0200 Subject: New upstream version 3.1.0 --- Object.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Object.c') diff --git a/Object.c b/Object.c index 0a29d01..f361394 100644 --- a/Object.c +++ b/Object.c @@ -15,8 +15,6 @@ const ObjectClass Object_class = { .extends = NULL }; -#ifndef NDEBUG - bool Object_isA(const Object* o, const ObjectClass* klass) { if (!o) return false; @@ -29,5 +27,3 @@ bool Object_isA(const Object* o, const ObjectClass* klass) { return false; } - -#endif /* NDEBUG */ -- cgit v1.2.3