aboutsummaryrefslogtreecommitdiff
path: root/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2020-06-25 17:14:47 -0700
committerJonas Devlieghere <jonas@devlieghere.com>2020-06-25 17:15:29 -0700
commitf441313464b2eef94a41c60bfde31a2bf9c602d7 (patch)
tree2d18b9182a476b4791c1c141b8d00c254d07a3db /lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp
parentca8b7ef763797253e08f614a7d38b76e77806b12 (diff)
downloadllvm-f441313464b2eef94a41c60bfde31a2bf9c602d7.zip
llvm-f441313464b2eef94a41c60bfde31a2bf9c602d7.tar.gz
llvm-f441313464b2eef94a41c60bfde31a2bf9c602d7.tar.bz2
[lldb/ScriptInterpreter] Fix Windows error C2371: 'pid_t': redefinition
pyconfig.h(194): error C2371: 'pid_t': redefinition; different basic types PosixApi.h(82): note: see declaration of 'pid_t'
Diffstat (limited to 'lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp')
-rw-r--r--lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp b/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp
index 7823461..f661835 100644
--- a/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp
+++ b/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp
@@ -8,9 +8,10 @@
#include "gtest/gtest.h"
+#include "Plugins/ScriptInterpreter/Python/lldb-python.h"
+
#include "Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h"
#include "Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h"
-#include "Plugins/ScriptInterpreter/Python/lldb-python.h"
#include "lldb/Host/FileSystem.h"
#include "lldb/Host/HostInfo.h"