summaryrefslogtreecommitdiffstats
path: root/Hashtable.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 /Hashtable.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 'Hashtable.h')
-rw-r--r--Hashtable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Hashtable.h b/Hashtable.h
index 144f01cf..aacbb340 100644
--- a/Hashtable.h
+++ b/Hashtable.h
@@ -26,11 +26,11 @@ struct Hashtable_ {
bool owner;
};
-#ifdef DEBUG
+#ifndef NDEBUG
int Hashtable_count(Hashtable* this);
-#endif
+#endif /* NDEBUG */
Hashtable* Hashtable_new(int size, bool owner);

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