RunThreadPlan should set the plan to "not private" since it needs that,
and then reset it to the original value when done.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@131498 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Expression/ClangUserExpression.cpp b/source/Expression/ClangUserExpression.cpp
index dced022..0386e94 100644
--- a/source/Expression/ClangUserExpression.cpp
+++ b/source/Expression/ClangUserExpression.cpp
@@ -508,7 +508,7 @@
         
         lldb::addr_t function_stack_pointer = static_cast<ThreadPlanCallFunction *>(call_plan_sp.get())->GetFunctionStackPointer();
     
-        // call_plan_sp->SetPrivate(true);
+        call_plan_sp->SetPrivate(true);
     
         uint32_t single_thread_timeout_usec = 500000;