Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Unified Diff: src/liveedit.cc

Issue 10702201: Fix Mac build warning (very rightful) (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/liveedit.cc
diff --git a/src/liveedit.cc b/src/liveedit.cc
index 1a21deadfdcdb5da0ed1b8d9bae55a73493f08f6..5dc86f91d6b5490b8ac550f22be20cab0f85bb17 100644
--- a/src/liveedit.cc
+++ b/src/liveedit.cc
@@ -1797,7 +1797,9 @@ Handle<JSArray> LiveEdit::CheckAndDropActivations(
// 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) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698