diff options
author | Zachary Turner <zturner@google.com> | 2014-10-06 21:22:36 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2014-10-06 21:22:36 +0000 |
commit | 93a66fc13abb684468463bca12c87901083daf96 (patch) | |
tree | d0115f4de53ff5b481ae2031ac2bb951d95517fd /lldb/source/Host/macosx | |
parent | 9aceaa1be2b67f18a461035de9f39a5e8152fc16 (diff) | |
download | bcm5719-llvm-93a66fc13abb684468463bca12c87901083daf96.tar.gz bcm5719-llvm-93a66fc13abb684468463bca12c87901083daf96.zip |
Move ConnectionFileDescriptor to platform-specific Host directory.
As part of getting ConnectionFileDescriptor working on Windows,
there is going to be alot of platform specific work to be done.
As a result, the implementation is moving into Host. This patch
performs the code move and fixes up call-sites appropriately.
Reviewed by: Greg Clayton
Differential Revision: http://reviews.llvm.org/D5548
llvm-svn: 219143
Diffstat (limited to 'lldb/source/Host/macosx')
-rw-r--r-- | lldb/source/Host/macosx/Host.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Host/macosx/Host.mm b/lldb/source/Host/macosx/Host.mm index 184c6f65b53..ffa4f849965 100644 --- a/lldb/source/Host/macosx/Host.mm +++ b/lldb/source/Host/macosx/Host.mm @@ -39,12 +39,12 @@ #include "lldb/Core/ArchSpec.h" #include "lldb/Core/Communication.h" -#include "lldb/Core/ConnectionFileDescriptor.h" #include "lldb/Core/DataExtractor.h" #include "lldb/Core/Log.h" #include "lldb/Core/Module.h" #include "lldb/Core/StreamFile.h" #include "lldb/Core/StreamString.h" +#include "lldb/Host/ConnectionFileDescriptor.h" #include "lldb/Host/Endian.h" #include "lldb/Host/FileSpec.h" #include "lldb/Host/FileSystem.h" |