From 7914ec201ef19fa0c0caed99dc150a953eb9bc19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Wed, 21 Oct 2020 21:25:59 +0200 Subject: Hashtable update - use consistent type for key by introducing a new typedef - use unsigned types for sizes - name parameters in foreach function typedef --- Vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Vector.h') diff --git a/Vector.h b/Vector.h index 70688152..ec354b16 100644 --- a/Vector.h +++ b/Vector.h @@ -54,7 +54,7 @@ void Vector_set(Vector* this, int idx, void* data_); Object* Vector_get(Vector* this, int idx); int Vector_size(const Vector* this); -int Vector_count(const Vector* this); +unsigned int Vector_count(const Vector* this); #else /* NDEBUG */ -- cgit v1.2.3