aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter/ScriptInterpreter.cpp
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2020-06-25 12:19:00 -0700
committerJonas Devlieghere <jonas@devlieghere.com>2020-06-25 12:19:04 -0700
commit11f2ef4d9e78fd51cc9813d4ff0d8913c4ae70e1 (patch)
tree7293fc498dc8357970ec1ab319afa34c5947bf3a /lldb/source/Interpreter/ScriptInterpreter.cpp
parent9da93f590414ae3b7be20061d8a97695b263482e (diff)
downloadllvm-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.cpp13
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;