diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2020-06-25 12:19:00 -0700 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2020-06-25 12:19:04 -0700 |
commit | 11f2ef4d9e78fd51cc9813d4ff0d8913c4ae70e1 (patch) | |
tree | 7293fc498dc8357970ec1ab319afa34c5947bf3a /lldb/source/Interpreter/ScriptInterpreter.cpp | |
parent | 9da93f590414ae3b7be20061d8a97695b263482e (diff) | |
download | llvm-11f2ef4d9e78fd51cc9813d4ff0d8913c4ae70e1.zip llvm-11f2ef4d9e78fd51cc9813d4ff0d8913c4ae70e1.tar.gz llvm-11f2ef4d9e78fd51cc9813d4ff0d8913c4ae70e1.tar.bz2 |
[lldb/ScriptInterpreter] Fix missing include on Windows
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/ScriptInterpreter.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreter.cpp b/lldb/source/Interpreter/ScriptInterpreter.cpp index 967c228..8662044 100644 --- a/lldb/source/Interpreter/ScriptInterpreter.cpp +++ b/lldb/source/Interpreter/ScriptInterpreter.cpp @@ -7,12 +7,6 @@ //===----------------------------------------------------------------------===// #include "lldb/Interpreter/ScriptInterpreter.h" - -#include <memory> -#include <stdio.h> -#include <stdlib.h> -#include <string> - #include "lldb/Core/Debugger.h" #include "lldb/Host/ConnectionFileDescriptor.h" #include "lldb/Host/Pipe.h" @@ -21,6 +15,13 @@ #include "lldb/Utility/Status.h" #include "lldb/Utility/Stream.h" #include "lldb/Utility/StringList.h" +#if defined(_WIN32) +#include "lldb/Host/windows/ConnectionGenericFileWindows.h" +#endif +#include <memory> +#include <stdio.h> +#include <stdlib.h> +#include <string> using namespace lldb; using namespace lldb_private; |