From 709a0604112b0683d7c6c61a487f8ceb8a8baa72 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Fri, 13 May 2011 19:57:45 +0000 Subject: [PATCH] This method has been removed from the API. This fix the compilation breakage due to its presence. Patch by Marco Minutoli llvm-svn: 131303 --- lldb/source/Host/common/Host.cpp | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/lldb/source/Host/common/Host.cpp b/lldb/source/Host/common/Host.cpp index a66547227793..b699bc8bcd55 100644 --- a/lldb/source/Host/common/Host.cpp +++ b/lldb/source/Host/common/Host.cpp @@ -1173,19 +1173,4 @@ LaunchApplication (const FileSpec &app_file_spec) return LLDB_INVALID_PROCESS_ID; } -lldb::pid_t -Host::LaunchInNewTerminal -( - const char *tty_name, - const char **argv, - const char **envp, - const char *working_dir, - const ArchSpec *arch_spec, - bool stop_at_entry, - bool disable_aslr -) -{ - return LLDB_INVALID_PROCESS_ID; -} - #endif