| Index: base/trace_event/heap_profiler_allocation_context_tracker.cc
|
| diff --git a/base/trace_event/heap_profiler_allocation_context_tracker.cc b/base/trace_event/heap_profiler_allocation_context_tracker.cc
|
| index fac4a8a7b437b4a8c6792631f252ad8a3e78c8e5..31f311a918e6d5931addb8aecce5ebd2d6420ef1 100644
|
| --- a/base/trace_event/heap_profiler_allocation_context_tracker.cc
|
| +++ b/base/trace_event/heap_profiler_allocation_context_tracker.cc
|
| @@ -168,8 +168,8 @@ AllocationContext AllocationContextTracker::GetContextSnapshot() {
|
| CaptureMode mode = static_cast<CaptureMode>(
|
| subtle::NoBarrier_Load(&capture_mode_));
|
|
|
| - auto backtrace = std::begin(ctx.backtrace.frames);
|
| - auto backtrace_end = std::end(ctx.backtrace.frames);
|
| + auto* backtrace = std::begin(ctx.backtrace.frames);
|
| + auto* backtrace_end = std::end(ctx.backtrace.frames);
|
|
|
| if (!thread_name_) {
|
| // Ignore the string allocation made by GetAndLeakThreadName to avoid
|
|
|