summaryrefslogtreecommitdiff
path: root/libc/malloc_debug/malloc_debug.h
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2016-02-02 13:09:59 -0800
committerChristopher Ferris <cferris@google.com>2016-02-02 13:22:40 -0800
commit701bb65511aed14da6c51179619785e5706fa5a6 (patch)
tree04cffebe6ad88578e7212d690318563b4bb3bfa5 /libc/malloc_debug/malloc_debug.h
parent4821db1b3ecc14828d4acf4abed26bb7d8b8cf6a (diff)
Remove the unused TrackHeader structure.
Change-Id: I07ae5de717e1fcfbe5dfe552a531db9f630da622
Diffstat (limited to 'libc/malloc_debug/malloc_debug.h')
-rw-r--r--libc/malloc_debug/malloc_debug.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/libc/malloc_debug/malloc_debug.h b/libc/malloc_debug/malloc_debug.h
index cd025a786..6f9f90f5f 100644
--- a/libc/malloc_debug/malloc_debug.h
+++ b/libc/malloc_debug/malloc_debug.h
@@ -58,11 +58,6 @@ struct Header {
static size_t max_size() { return (1U << 31) - 1; }
} __attribute__((packed));
-struct TrackHeader {
- Header* prev = nullptr;
- Header* next = nullptr;
-} __attribute__((packed));
-
struct BacktraceHeader {
size_t num_frames;
uintptr_t frames[0];