diff options
author | Stella Stamenova <stilis@microsoft.com> | 2019-07-09 18:41:31 +0000 |
---|---|---|
committer | Stella Stamenova <stilis@microsoft.com> | 2019-07-09 18:41:31 +0000 |
commit | 20ecec6116b367cbf9fe2ed978656ed117665bf9 (patch) | |
tree | 0c0cce15bde861efe15eda2b09294d69519cec51 /lldb/source/Host/common/ThreadLauncher.cpp | |
parent | a1b2a27a3847d03442acbecf48553515fea74ecd (diff) | |
download | bcm5719-llvm-20ecec6116b367cbf9fe2ed978656ed117665bf9.tar.gz bcm5719-llvm-20ecec6116b367cbf9fe2ed978656ed117665bf9.zip |
[lldb, windows] Include WindowsError instead of ErrorHandling in ThreadLauncher
ErrorHandling.h does not include WindowsError.h which is needed for mapWindowsError
llvm-svn: 365533
Diffstat (limited to 'lldb/source/Host/common/ThreadLauncher.cpp')
-rw-r--r-- | lldb/source/Host/common/ThreadLauncher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Host/common/ThreadLauncher.cpp b/lldb/source/Host/common/ThreadLauncher.cpp index e5fe2efc8e8..6e3c8b6a13a 100644 --- a/lldb/source/Host/common/ThreadLauncher.cpp +++ b/lldb/source/Host/common/ThreadLauncher.cpp @@ -16,7 +16,7 @@ #include "lldb/Host/windows/windows.h" #endif -#include "llvm/Support/ErrorHandling.h" +#include "llvm/Support/WindowsError.h" using namespace lldb; using namespace lldb_private; |