diff options
author | Pavel Labath <pavel@labath.sk> | 2019-03-06 14:41:43 +0000 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2019-03-06 14:41:43 +0000 |
commit | b8093314ef72e91eb00d2e77b0a6c094e28258f6 (patch) | |
tree | ea7cb795a1189ad97b654f131dc2b72b8ce940e5 /lldb/source/Target/Memory.cpp | |
parent | 89e534746fc8b9ac4103d1d337a60871503e95be (diff) | |
download | bcm5719-llvm-b8093314ef72e91eb00d2e77b0a6c094e28258f6.tar.gz bcm5719-llvm-b8093314ef72e91eb00d2e77b0a6c094e28258f6.zip |
Move RangeMap.h into Utility
Summary:
This file implements some general purpose data structures, and so it
belongs to the Utility module.
Reviewers: zturner, jingham, JDevlieghere, clayborg, espindola
Subscribers: emaste, mgorny, javed.absar, arichardson, MaskRay, lldb-commits
Differential Revision: https://reviews.llvm.org/D58970
llvm-svn: 355509
Diffstat (limited to 'lldb/source/Target/Memory.cpp')
-rw-r--r-- | lldb/source/Target/Memory.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Target/Memory.cpp b/lldb/source/Target/Memory.cpp index 979553ffa6a..fac5e43c286 100644 --- a/lldb/source/Target/Memory.cpp +++ b/lldb/source/Target/Memory.cpp @@ -7,11 +7,10 @@ //===----------------------------------------------------------------------===// #include "lldb/Target/Memory.h" - -#include "lldb/Core/RangeMap.h" #include "lldb/Target/Process.h" #include "lldb/Utility/DataBufferHeap.h" #include "lldb/Utility/Log.h" +#include "lldb/Utility/RangeMap.h" #include "lldb/Utility/State.h" #include <cinttypes> |