Revision: 12077 Author: [email protected] Date: Fri Jul 13 02:23:46 2012 Log: Fix Mac build warning (very rightful)
Review URL: https://chromiumcodereview.appspot.com/10702201 http://code.google.com/p/v8/source/detail?r=12077 Modified: /branches/bleeding_edge/src/liveedit.cc ======================================= --- /branches/bleeding_edge/src/liveedit.cc Fri Jul 13 02:02:03 2012 +++ /branches/bleeding_edge/src/liveedit.cc Fri Jul 13 02:23:46 2012 @@ -1797,7 +1797,9 @@ // means an error. class SingleFrameTarget { public: - explicit SingleFrameTarget(JavaScriptFrame* frame) : m_frame(frame) {} + explicit SingleFrameTarget(JavaScriptFrame* frame) + : m_frame(frame), + m_saved_status(LiveEdit::FUNCTION_AVAILABLE_FOR_PATCH) {} bool MatchActivation(StackFrame* frame, LiveEdit::FunctionPatchabilityStatus status) { -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
