summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAliaksey Kandratsenka <alk@tut.by>2013-11-16 13:31:08 -0800
committerAliaksey Kandratsenka <alk@tut.by>2013-11-16 13:31:08 -0800
commitdd5f979c5e6e7e3127835a659a5af89ac21597d5 (patch)
treea1a75e78f2ea7e8fde580b7f5da58ea379539e9b
parente4ea98f147a7602979f70be022de068b04e68060 (diff)
downloadgperftools-dd5f979c5e6e7e3127835a659a5af89ac21597d5.tar.gz
fixed -Wreorder warning in HeapProfileTable constructor
-rw-r--r--src/heap-profile-table.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/heap-profile-table.cc b/src/heap-profile-table.cc
index 1554bc1..5191afb 100644
--- a/src/heap-profile-table.cc
+++ b/src/heap-profile-table.cc
@@ -127,8 +127,8 @@ HeapProfileTable::HeapProfileTable(Allocator alloc,
bool profile_mmap)
: alloc_(alloc),
dealloc_(dealloc),
- bucket_table_(NULL),
profile_mmap_(profile_mmap),
+ bucket_table_(NULL),
num_buckets_(0),
address_map_(NULL) {
// Make a hash table for buckets.