diff options
author | Christopher Ferris <cferris@google.com> | 2016-11-18 21:33:17 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-11-18 21:33:18 +0000 |
commit | c2395be74a69ef43f53aa6505af4df78bb03df7c (patch) | |
tree | 6a3b0d1a67dd93d53c3704489f106148c01b01b7 /libc/malloc_debug/Config.h | |
parent | a7e74f09b8db4dbe5ca8c74603f74dc45911aef7 (diff) | |
parent | ac81fe8657119c265edcc2f05b3e5b7c5b17ae9f (diff) |
Merge "Enable malloc debug using environment variables"
Diffstat (limited to 'libc/malloc_debug/Config.h')
-rw-r--r-- | libc/malloc_debug/Config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/malloc_debug/Config.h b/libc/malloc_debug/Config.h index ac620adfe..ca56dc8c9 100644 --- a/libc/malloc_debug/Config.h +++ b/libc/malloc_debug/Config.h @@ -56,7 +56,7 @@ constexpr size_t MINIMUM_ALIGNMENT_BYTES = 8; constexpr uint64_t HEADER_OPTIONS = FRONT_GUARD | REAR_GUARD | BACKTRACE | FREE_TRACK | LEAK_TRACK; struct Config { - bool SetFromProperties(); + bool Set(const char* str); size_t front_guard_bytes = 0; size_t rear_guard_bytes = 0; |