From 73d32d2fb7644efbd77f4f107cd585bfe40d5cd9 Mon Sep 17 00:00:00 2001 From: "bmeurer@chromium.org" Date: Mon, 1 Jul 2013 12:11:29 +0000 Subject: [PATCH] Fix compiler error about unused profiles_ field in ProfilerEventsProcessor. BUG= R=jkummerow@chromium.org Review URL: https://codereview.chromium.org/18353002 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@15412 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/cpu-profiler.cc | 1 - src/cpu-profiler.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/cpu-profiler.cc b/src/cpu-profiler.cc index bdb4ec4..1309604 100644 --- a/src/cpu-profiler.cc +++ b/src/cpu-profiler.cc @@ -49,7 +49,6 @@ ProfilerEventsProcessor::ProfilerEventsProcessor( ProfileGenerator* generator, CpuProfilesCollection* profiles) : Thread(Thread::Options("v8:ProfEvntProc", kProfilerStackSize)), generator_(generator), - profiles_(profiles), running_(true), ticks_buffer_(sizeof(TickSampleEventRecord), kTickSamplesBufferChunkSize, diff --git a/src/cpu-profiler.h b/src/cpu-profiler.h index c66f99e..1e8ac79 100644 --- a/src/cpu-profiler.h +++ b/src/cpu-profiler.h @@ -166,7 +166,6 @@ class ProfilerEventsProcessor : public Thread { bool ProcessTicks(unsigned dequeue_order); ProfileGenerator* generator_; - CpuProfilesCollection* profiles_; bool running_; UnboundQueue events_buffer_; SamplingCircularQueue ticks_buffer_; -- 2.7.4