Revision: 11304
Author:   [email protected]
Date:     Fri Apr 13 02:19:01 2012
Log:      Build fix for Mac.
warning: base class 'class v8::OutputStream' should be explicitly initialized in the copy constructor

BUG=none
TEST=none
TBR=mnaganov

Review URL: https://chromiumcodereview.appspot.com/10038044
http://code.google.com/p/v8/source/detail?r=11304

Modified:
 /branches/bleeding_edge/test/cctest/test-heap-profiler.cc

=======================================
--- /branches/bleeding_edge/test/cctest/test-heap-profiler.cc Fri Apr 13 01:52:25 2012 +++ /branches/bleeding_edge/test/cctest/test-heap-profiler.cc Fri Apr 13 02:19:01 2012
@@ -707,7 +707,8 @@
       intervals_count_(0),
       first_interval_index_(-1) { }
   TestStatsStream(const TestStatsStream& stream)
-    : eos_signaled_(stream.eos_signaled_),
+    : v8::OutputStream(stream),
+      eos_signaled_(stream.eos_signaled_),
       numbers_written_(stream.numbers_written_),
       entries_count_(stream.entries_count_),
       intervals_count_(stream.intervals_count_),

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to