summaryrefslogtreecommitdiff
path: root/libc/malloc_debug/MapData.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc/malloc_debug/MapData.h')
-rw-r--r--libc/malloc_debug/MapData.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/malloc_debug/MapData.h b/libc/malloc_debug/MapData.h
index 023813910..895f78f85 100644
--- a/libc/malloc_debug/MapData.h
+++ b/libc/malloc_debug/MapData.h
@@ -41,7 +41,7 @@ struct MapEntry {
MapEntry(uintptr_t start, uintptr_t end, uintptr_t offset, const char* name, size_t name_len)
: start(start), end(end), offset(offset), name(name, name_len) {}
- MapEntry(uintptr_t pc) : start(pc), end(pc) {}
+ explicit MapEntry(uintptr_t pc) : start(pc), end(pc) {}
uintptr_t start;
uintptr_t end;