summaryrefslogtreecommitdiffstats
path: root/Object.h
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2020-09-17 22:27:33 +0200
committercgzones <cgzones@googlemail.com>2020-10-03 19:04:27 +0200
commitd69585b82abfdaede9e8c358982a4953c432e8d2 (patch)
tree7b087349e21cd51dab789bc44da73272d336937c /Object.h
parentb7f63292e5394ca7eee2dc5d14d0d1244db61c17 (diff)
Resolve DEBUG compilation issues
Use NDEBUG conditional instead of DEBUG. Do not call static functions in extern inline ones. Vector.c:67:11: error: static function 'Vector_isConsistent' is used in an inline function with external linkage [-Werror,-Wstatic-in-inline]
Diffstat (limited to 'Object.h')
-rw-r--r--Object.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Object.h b/Object.h
index 50a5f12d..462797c2 100644
--- a/Object.h
+++ b/Object.h
@@ -48,10 +48,10 @@ typedef union {
extern ObjectClass Object_class;
-#ifdef DEBUG
+#ifndef NDEBUG
bool Object_isA(Object* o, const ObjectClass* klass);
-#endif
+#endif /* NDEBUG */
#endif

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