diff options
author | Pavel Labath <labath@google.com> | 2017-11-02 21:35:26 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-11-02 21:35:26 +0000 |
commit | eac00c3be67ffaf831bedabaeb1b558f49c4cec8 (patch) | |
tree | 708a17d065a0334fa16ece717f1acfc2ea76a418 /lldb/source/Breakpoint/BreakpointIDList.cpp | |
parent | 1d02b13eb7758844adb9f1cec0828376f10d365a (diff) | |
download | bcm5719-llvm-eac00c3be67ffaf831bedabaeb1b558f49c4cec8.tar.gz bcm5719-llvm-eac00c3be67ffaf831bedabaeb1b558f49c4cec8.zip |
Fix some warnings found by ToT clang
These fall into two categories:
- unused variables
- (uint8_t *)NULL + X -- changed to reinterpret_cast(X)
llvm-svn: 317270
Diffstat (limited to 'lldb/source/Breakpoint/BreakpointIDList.cpp')
-rw-r--r-- | lldb/source/Breakpoint/BreakpointIDList.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Breakpoint/BreakpointIDList.cpp b/lldb/source/Breakpoint/BreakpointIDList.cpp index 0a704fdc918..6d610d512f3 100644 --- a/lldb/source/Breakpoint/BreakpointIDList.cpp +++ b/lldb/source/Breakpoint/BreakpointIDList.cpp @@ -139,7 +139,6 @@ void BreakpointIDList::FindAndReplaceIDRanges(Args &old_args, Target *target, return; } - llvm::StringRef range_expr; Status error; std::tie(range_from, range_to) = |