Silence warning on Windows.
authorChaoren Lin <chaorenl@google.com>
Mon, 8 Jun 2015 04:39:24 +0000 (04:39 +0000)
committerChaoren Lin <chaorenl@google.com>
Mon, 8 Jun 2015 04:39:24 +0000 (04:39 +0000)
llvm-svn: 239284

lldb/source/Plugins/Process/Windows/ProcessWindows.cpp

index 8364e77..14dc499 100644 (file)
@@ -585,7 +585,8 @@ ProcessWindows::DoHalt(bool &caused_stop)
 
 void ProcessWindows::DidLaunch()
 {
-    DidAttach(ArchSpec());
+    ArchSpec arch_spec;
+    DidAttach(arch_spec);
 }
 
 void