Fixed the launching code when using the new SBLaunchInfo.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@151392 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/scripts/Python/interface/SBTarget.i b/scripts/Python/interface/SBTarget.i
index c0243b8..0990866 100644
--- a/scripts/Python/interface/SBTarget.i
+++ b/scripts/Python/interface/SBTarget.i
@@ -11,21 +11,8 @@
class SBLaunchInfo
{
- public:
- SBLaunchInfo ();
-
- SBLaunchInfo (const char *executable_path,
- const char *triple,
- const char **argv);
-
- lldb::SBFileSpec
- GetExecutable ();
-
- void
- SetExecutable (const char *path);
-
- void
- SetExecutable (lldb::SBFileSpec executable);
+public:
+ SBLaunchInfo (const char **argv);
uint32_t
GetUserID();
@@ -45,12 +32,6 @@
void
SetGroupID (uint32_t gid);
- const char *
- GetTriple ();
-
- void
- SetTriple (const char *triple);
-
uint32_t
GetNumArguments ();