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/API/SBTarget.cpp | |
| 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/API/SBTarget.cpp')
| -rw-r--r-- | lldb/source/API/SBTarget.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/API/SBTarget.cpp b/lldb/source/API/SBTarget.cpp index 1d13087eef6..bf444a72278 100644 --- a/lldb/source/API/SBTarget.cpp +++ b/lldb/source/API/SBTarget.cpp @@ -36,7 +36,6 @@ #include "lldb/Core/Disassembler.h" #include "lldb/Core/Module.h" #include "lldb/Core/ModuleSpec.h" -#include "lldb/Core/STLUtils.h" #include "lldb/Core/SearchFilter.h" #include "lldb/Core/Section.h" #include "lldb/Core/StructuredDataImpl.h" @@ -1598,7 +1597,7 @@ lldb::SBModule SBTarget::AddModule(const SBModuleSpec &module_spec) { lldb::SBModule sb_module; TargetSP target_sp(GetSP()); if (target_sp) - sb_module.SetSP(target_sp->GetOrCreateModule(*module_spec.m_opaque_up, + sb_module.SetSP(target_sp->GetOrCreateModule(*module_spec.m_opaque_up, true /* notify */)); return LLDB_RECORD_RESULT(sb_module); } |

