From 11f2ef4d9e78fd51cc9813d4ff0d8913c4ae70e1 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Thu, 25 Jun 2020 12:19:00 -0700 Subject: [lldb/ScriptInterpreter] Fix missing include on Windows --- lldb/source/Interpreter/ScriptInterpreter.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'lldb/source/Interpreter/ScriptInterpreter.cpp') 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 -#include -#include -#include - #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 +#include +#include +#include using namespace lldb; using namespace lldb_private; -- cgit v1.1