forked from OSchip/llvm-project
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
This commit is contained in:
parent
8e92d9b68d
commit
ddfda9d7a2
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue