diff options
| author | Zachary Turner <zturner@google.com> | 2015-03-03 21:05:17 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2015-03-03 21:05:17 +0000 |
| commit | af0f45f1c96dc0674fd61e35e0c6e15fb586718a (patch) | |
| tree | 51f537ad078dd23f100990e62404fb47291ad645 /lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp | |
| parent | 06a8eb8343676632fc6e1563c39835b1a91da53b (diff) | |
| download | bcm5719-llvm-af0f45f1c96dc0674fd61e35e0c6e15fb586718a.tar.gz bcm5719-llvm-af0f45f1c96dc0674fd61e35e0c6e15fb586718a.zip | |
Don't #include ClangPersistentVariables.h from Process.h
Nothing from this header file was even being referenced in
Process.h anyway, so it was a completely unnecessary include.
llvm-svn: 231131
Diffstat (limited to 'lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp')
| -rw-r--r-- | lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp b/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp index 010e3f0bebe..91f60069996 100644 --- a/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp +++ b/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp @@ -10,6 +10,7 @@ #include "UnwindAssembly-x86.h" #include "llvm-c/Disassembler.h" +#include "llvm/ADT/STLExtras.h" #include "llvm/Support/TargetSelect.h" #include "lldb/Core/Address.h" |

