forked from OSchip/llvm-project
Fix unittest compilation on windows
After the reformat, the unittests do not compile due to missing due to redefinition errors between PosixApi.h and ucrt/direct.h. This is a bit of a shot in the dark, as I have not tested it on windows, but I am restoring the original include order, so it should hopefully fix it. llvm-svn: 280793
This commit is contained in:
parent
ec905a62ae
commit
46031e6fec
|
@ -7,9 +7,10 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
#include "lldb/Host/Symbols.h"
|
||||
#include "lldb/Core/ModuleSpec.h"
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
using namespace lldb_private;
|
||||
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
#include <future>
|
||||
|
||||
#include "GDBRemoteTestUtils.h"
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
#include "Plugins/Process/Utility/LinuxSignals.h"
|
||||
#include "Plugins/Process/gdb-remote/GDBRemoteClientBase.h"
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
#include <future>
|
||||
|
||||
#include "GDBRemoteTestUtils.h"
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
#include "Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h"
|
||||
#include "lldb/Core/DataBuffer.h"
|
||||
|
|
|
@ -9,9 +9,10 @@
|
|||
#ifndef lldb_unittests_Process_gdb_remote_GDBRemoteTestUtils_h
|
||||
#define lldb_unittests_Process_gdb_remote_GDBRemoteTestUtils_h
|
||||
|
||||
#include "Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h"
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
#include "Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h"
|
||||
|
||||
namespace lldb_private {
|
||||
namespace process_gdb_remote {
|
||||
|
||||
|
|
Loading…
Reference in New Issue