diff options
Diffstat (limited to 'lldb/include/lldb/Interpreter/Args.h')
-rw-r--r-- | lldb/include/lldb/Interpreter/Args.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lldb/include/lldb/Interpreter/Args.h b/lldb/include/lldb/Interpreter/Args.h index ea707648449..b9e2bd9b580 100644 --- a/lldb/include/lldb/Interpreter/Args.h +++ b/lldb/include/lldb/Interpreter/Args.h @@ -202,10 +202,7 @@ public: /// The NULL terminated C string of the copy of \a arg_cstr. //------------------------------------------------------------------ const char * - AppendArgument(llvm::StringRef arg_str, char quote_char = '\0'); - - const char * - AppendArgument(const char *arg_cstr, char quote_char = '\0'); + AppendArgument (const char *arg_cstr, char quote_char = '\0'); void AppendArguments (const Args &rhs); @@ -230,8 +227,6 @@ public: //------------------------------------------------------------------ const char * InsertArgumentAtIndex (size_t idx, const char *arg_cstr, char quote_char = '\0'); - const char * - InsertArgumentAtIndex(size_t idx, llvm::StringRef arg_str, char quote_char = '\0'); //------------------------------------------------------------------ /// Replaces the argument value at index \a idx to \a arg_cstr |