diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-11-06 14:44:39 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-11-06 15:06:29 -0800 |
commit | cfca0056f054602dd46d1224c63d2275a4ecd90f (patch) | |
tree | f01ed87fe17e990835a47ae53edbe4e7b5ac90a3 /lldb/source/Commands | |
parent | baaa097360a0e92164119574febcc5613221fa0d (diff) | |
download | bcm5719-llvm-cfca0056f054602dd46d1224c63d2275a4ecd90f.tar.gz bcm5719-llvm-cfca0056f054602dd46d1224c63d2275a4ecd90f.zip |
[lldb] Remove dead code from STLUtils.h
Diffstat (limited to 'lldb/source/Commands')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpoint.h | 1 | ||||
-rw-r--r-- | lldb/source/Commands/CommandObjectCommands.h | 1 | ||||
-rw-r--r-- | lldb/source/Commands/CommandObjectSource.cpp | 4 | ||||
-rw-r--r-- | lldb/source/Commands/CommandObjectSource.h | 1 |
4 files changed, 2 insertions, 5 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.h b/lldb/source/Commands/CommandObjectBreakpoint.h index 7a0d5546d7a..d7b3a3e3f36 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.h +++ b/lldb/source/Commands/CommandObjectBreakpoint.h @@ -14,7 +14,6 @@ #include "lldb/Breakpoint/BreakpointName.h" #include "lldb/Core/Address.h" -#include "lldb/Core/STLUtils.h" #include "lldb/Interpreter/CommandObjectMultiword.h" #include "lldb/Interpreter/Options.h" #include "lldb/lldb-private.h" diff --git a/lldb/source/Commands/CommandObjectCommands.h b/lldb/source/Commands/CommandObjectCommands.h index 468ee53344f..ef5fc4b0a83 100644 --- a/lldb/source/Commands/CommandObjectCommands.h +++ b/lldb/source/Commands/CommandObjectCommands.h @@ -10,7 +10,6 @@ #ifndef liblldb_CommandObjectCommands_h_ #define liblldb_CommandObjectCommands_h_ -#include "lldb/Core/STLUtils.h" #include "lldb/Interpreter/CommandObject.h" #include "lldb/Interpreter/CommandObjectMultiword.h" diff --git a/lldb/source/Commands/CommandObjectSource.cpp b/lldb/source/Commands/CommandObjectSource.cpp index 10da30fb38b..fd1b158afb1 100644 --- a/lldb/source/Commands/CommandObjectSource.cpp +++ b/lldb/source/Commands/CommandObjectSource.cpp @@ -111,7 +111,7 @@ class CommandObjectSourceInfo : public CommandObjectParsed { uint32_t start_line; uint32_t end_line; uint32_t num_lines; - STLStringArray modules; + std::vector<std::string> modules; }; public: @@ -708,7 +708,7 @@ class CommandObjectSourceList : public CommandObjectParsed { lldb::addr_t address; uint32_t start_line; uint32_t num_lines; - STLStringArray modules; + std::vector<std::string> modules; bool show_bp_locs; bool reverse; }; diff --git a/lldb/source/Commands/CommandObjectSource.h b/lldb/source/Commands/CommandObjectSource.h index d72122d55dc..a2c2b0c6886 100644 --- a/lldb/source/Commands/CommandObjectSource.h +++ b/lldb/source/Commands/CommandObjectSource.h @@ -10,7 +10,6 @@ #ifndef liblldb_CommandObjectSource_h_ #define liblldb_CommandObjectSource_h_ -#include "lldb/Core/STLUtils.h" #include "lldb/Interpreter/CommandObject.h" #include "lldb/Interpreter/CommandObjectMultiword.h" |