diff options
author | Zachary Turner <zturner@google.com> | 2017-02-14 19:06:07 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-02-14 19:06:07 +0000 |
commit | 01c3243fc1a20b5ddcb464a3183e5fd904d695a4 (patch) | |
tree | 7e6814381873b72f5f31e2e338a1ed6b1766b1ae /lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp | |
parent | 0ce53e4b9f9d5ab61acbb05edce4bf56d39ee9ec (diff) | |
download | llvm-01c3243fc1a20b5ddcb464a3183e5fd904d695a4.zip llvm-01c3243fc1a20b5ddcb464a3183e5fd904d695a4.tar.gz llvm-01c3243fc1a20b5ddcb464a3183e5fd904d695a4.tar.bz2 |
Remove dependencies from Utility to Core and Target.
With this patch, the only dependency left is from Utility
to Host. After this is broken, Utility will finally be
standalone.
Differential Revision: https://reviews.llvm.org/D29909
llvm-svn: 295088
Diffstat (limited to 'lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp')
-rw-r--r-- | lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp b/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp index 7590e10..2c91f4b 100644 --- a/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp +++ b/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp @@ -17,9 +17,9 @@ #include "lldb/Core/ValueObject.h" #include "lldb/Core/ValueObjectConstResult.h" #include "lldb/DataFormatters/FormattersHelpers.h" -#include "lldb/Host/Endian.h" #include "lldb/Symbol/ClangASTContext.h" #include "lldb/Target/Target.h" +#include "lldb/Utility/Endian.h" #include "lldb/Utility/Error.h" #include "lldb/Utility/Stream.h" |