From ddfda9d7a20de2115643ddffcfc92e4d20de874d Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Wed, 18 Aug 2010 18:25:20 +0000 Subject: [PATCH] Allow the SBDebugger to construct itself with the default constructor so objects can own one of these objects and assign a valid value at a later point. llvm-svn: 111377 --- lldb/include/lldb/API/SBDebugger.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lldb/include/lldb/API/SBDebugger.h b/lldb/include/lldb/API/SBDebugger.h index 166bddac4bf7..e7792bab8f68 100644 --- a/lldb/include/lldb/API/SBDebugger.h +++ b/lldb/include/lldb/API/SBDebugger.h @@ -28,6 +28,8 @@ public: static SBDebugger Create(); + SBDebugger(); + ~SBDebugger(); bool @@ -137,9 +139,6 @@ public: private: - // Use the static function: SBDebugger::Create(); - SBDebugger(); - #ifndef SWIG friend class SBInputReader; -- GitLab