diff --git a/src/heap-profile-table.cc b/src/heap-profile-table.cc index 0efdf57..3cbc103 100644 --- a/src/heap-profile-table.cc +++ b/src/heap-profile-table.cc @@ -89,17 +89,7 @@ const char HeapProfileTable::kFileExt[] = ".heap"; //---------------------------------------------------------------------- -static const int kHashTableSize = 179999; // Size for bucket_table_. - -//---------------------------------------------------------------------- - -// We strip out different number of stack frames in debug mode -// because less inlining happens in that case -#ifdef NDEBUG -static const int kStripFrames = 2; -#else -static const int kStripFrames = 3; -#endif +static constexpr int kHashTableSize = 179999; // Size for bucket_table_. //----------------------------------------------------------------------