aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-05-15 11:18:40 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-05-15 11:18:40 +0200
commit53d42fdc5badea16ca76590bebd9bbb1e80c5f86 (patch)
tree6c665f604824f6ee0a2636c8da0ae5a3e4ac8285
parent10cb16c2b8945c02b5e7e2221bc6335d48996369 (diff)
downloadallocbench-53d42fdc5badea16ca76590bebd9bbb1e80c5f86.tar.gz
allocbench-53d42fdc5badea16ca76590bebd9bbb1e80c5f86.zip
remove unused variable
-rw-r--r--src/bumpptr_alloc.c1
1 files changed, 0 insertions, 1 deletions
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) {