-Werror,-Wunused-function

Change-Id: I55e586fe1d145be139bf1c5b00f434ea31ba50d7
This commit is contained in:
Stephan Bergmann
2013-09-30 14:42:12 +02:00
parent eafd376f9f
commit c3f5bb3e5b

View File

@@ -258,16 +258,6 @@ void* data;
}
static inline void pool_free(struct pool* pool, void* data)
{
assert(pool && data);
/* stack on top of the free list */
*(void**)data = pool->head_free;
pool->head_free = data;
}
/* ===============================================
* Hash implementation custumized to be just tracking
* a unique list of string (i.e no data associated