Replace boolean parameter with enum value according r342633

llvm-svn: 342671
This commit is contained in:
Tatyana Krasnukha 2018-09-20 17:57:24 +00:00
parent 68f0eeff83
commit d54ee88a75
1 changed files with 1 additions and 1 deletions

View File

@ -837,7 +837,7 @@ void ProcessWindows::OnDebuggerConnected(lldb::addr_t image_base) {
return;
}
GetTarget().SetExecutableModule(module, false);
GetTarget().SetExecutableModule(module, eLoadDependentsNo);
}
bool load_addr_changed;