From 53d42fdc5badea16ca76590bebd9bbb1e80c5f86 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Wed, 15 May 2019 11:18:40 +0200 Subject: remove unused variable --- src/bumpptr_alloc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bumpptr_alloc.c b/src/bumpptr_alloc.c index fc8f77e..9bd34a6 100644 --- a/src/bumpptr_alloc.c +++ b/src/bumpptr_alloc.c @@ -16,7 +16,6 @@ __thread void* mem_start = NULL; __thread void* mem_end = NULL; __thread uintptr_t ptr = 0; -__thread uintptr_t last_freed_ptr = 0; void* malloc(size_t size) { if(mem_start == NULL) { -- cgit v1.2.3