[Lldb-commits] [PATCH] D22230: Make ThreadPlanStepInstruction's constructor public.

Stephane Sezer via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 11 18:51:07 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL275139: Make ThreadPlanStepInstruction's constructor public. (authored by sas).

Changed prior to commit:
  http://reviews.llvm.org/D22230?vs=63625&id=63627#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D22230

Files:
  lldb/trunk/include/lldb/Target/ThreadPlanStepInstruction.h

Index: lldb/trunk/include/lldb/Target/ThreadPlanStepInstruction.h
===================================================================
--- lldb/trunk/include/lldb/Target/ThreadPlanStepInstruction.h
+++ lldb/trunk/include/lldb/Target/ThreadPlanStepInstruction.h
@@ -23,6 +23,12 @@
 class ThreadPlanStepInstruction : public ThreadPlan
 {
 public:
+    ThreadPlanStepInstruction (Thread &thread,
+                               bool step_over,
+                               bool stop_others,
+                               Vote stop_vote,
+                               Vote run_vote);
+
     ~ThreadPlanStepInstruction() override;
 
     void GetDescription(Stream *s, lldb::DescriptionLevel level) override;
@@ -37,11 +43,6 @@
 protected:
     bool DoPlanExplainsStop(Event *event_ptr) override;
 
-    ThreadPlanStepInstruction (Thread &thread,
-                               bool step_over,
-                               bool stop_others,
-                               Vote stop_vote,
-                               Vote run_vote);
     void SetUpState ();
 
 private:


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D22230.63627.patch
Type: text/x-patch
Size: 1079 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20160712/1e11b934/attachment.bin>


More information about the lldb-commits mailing list