diff options
Diffstat (limited to 'lldb/include/lldb/Interpreter/Args.h')
-rw-r--r-- | lldb/include/lldb/Interpreter/Args.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lldb/include/lldb/Interpreter/Args.h b/lldb/include/lldb/Interpreter/Args.h index a1e6543c6ef..b9ca27f43ab 100644 --- a/lldb/include/lldb/Interpreter/Args.h +++ b/lldb/include/lldb/Interpreter/Args.h @@ -27,9 +27,7 @@ namespace lldb_private { -typedef std::pair<int, std::string> OptionArgValue; -typedef std::pair<std::string, OptionArgValue> OptionArgPair; -typedef std::vector<OptionArgPair> OptionArgVector; +typedef std::vector<std::tuple<std::string, int, std::string>> OptionArgVector; typedef std::shared_ptr<OptionArgVector> OptionArgVectorSP; struct OptionArgElement { |