summaryrefslogtreecommitdiff
path: root/lib/asan/asan_memory_profile.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/asan/asan_memory_profile.cc')
-rw-r--r--lib/asan/asan_memory_profile.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/asan/asan_memory_profile.cc b/lib/asan/asan_memory_profile.cc
index 603284c8c..600db8c48 100644
--- a/lib/asan/asan_memory_profile.cc
+++ b/lib/asan/asan_memory_profile.cc
@@ -31,9 +31,9 @@ struct AllocationSite {
class HeapProfile {
public:
- HeapProfile() : allocations_(1024) {}
+ HeapProfile() { allocations_.reserve(1024); }
- void ProcessChunk(const AsanChunkView& cv) {
+ void ProcessChunk(const AsanChunkView &cv) {
if (cv.IsAllocated()) {
total_allocated_user_size_ += cv.UsedSize();
total_allocated_count_++;