summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2016-11-18 20:44:46 +0000
committerZachary Turner <zturner@google.com>2016-11-18 20:44:46 +0000
commita47464b2738c5180061f4cfe6b3f72238b3cfa7d (patch)
treebb35f622d5077ba508f8624fad7ad4943d87bf4d /lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp
parentde50acc31ec77e11cb1c8d383850e3b70e9fc308 (diff)
downloadbcm5719-llvm-a47464b2738c5180061f4cfe6b3f72238b3cfa7d.tar.gz
bcm5719-llvm-a47464b2738c5180061f4cfe6b3f72238b3cfa7d.zip
Change CreateTarget and dependents to accept StringRef.
llvm-svn: 287376
Diffstat (limited to 'lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp')
-rw-r--r--lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp b/lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp
index f16ebc463e1..290d8eab792 100644
--- a/lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp
+++ b/lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp
@@ -474,8 +474,8 @@ lldb::ProcessSP PlatformWindows::Attach(ProcessAttachInfo &attach_info,
FileSpec emptyFileSpec;
ArchSpec emptyArchSpec;
- error = debugger.GetTargetList().CreateTarget(
- debugger, nullptr, nullptr, false, nullptr, new_target_sp);
+ error = debugger.GetTargetList().CreateTarget(debugger, "", "", false,
+ nullptr, new_target_sp);
target = new_target_sp.get();
}
OpenPOWER on IntegriCloud