diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-05-15 11:18:40 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-05-15 11:18:40 +0200 |
| commit | 53d42fdc5badea16ca76590bebd9bbb1e80c5f86 (patch) | |
| tree | 6c665f604824f6ee0a2636c8da0ae5a3e4ac8285 | |
| parent | 10cb16c2b8945c02b5e7e2221bc6335d48996369 (diff) | |
| download | allocbench-53d42fdc5badea16ca76590bebd9bbb1e80c5f86.tar.gz allocbench-53d42fdc5badea16ca76590bebd9bbb1e80c5f86.zip | |
remove unused variable
| -rw-r--r-- | src/bumpptr_alloc.c | 1 |
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) { |
