summaryrefslogtreecommitdiffstats
path: root/lldb/source/API/SBTarget.cpp
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2019-11-06 14:44:39 -0800
committerJonas Devlieghere <jonas@devlieghere.com>2019-11-06 15:06:29 -0800
commitcfca0056f054602dd46d1224c63d2275a4ecd90f (patch)
treef01ed87fe17e990835a47ae53edbe4e7b5ac90a3 /lldb/source/API/SBTarget.cpp
parentbaaa097360a0e92164119574febcc5613221fa0d (diff)
downloadbcm5719-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.cpp3
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);
}
OpenPOWER on IntegriCloud