diff options
| author | Raphael Isemann <teemperor@gmail.com> | 2020-01-07 12:13:03 +0100 |
|---|---|---|
| committer | Raphael Isemann <teemperor@gmail.com> | 2020-01-07 13:03:56 +0100 |
| commit | 65fdb34219f33b2871a532a38814ac4ebea10abc (patch) | |
| tree | 5ddc3e81290641e13302734ec37030f3013ca77d /lldb/source/Core | |
| parent | 14cd4a5b32478f76b9fa58825b7c92ba0dd5bc2b (diff) | |
| download | bcm5719-llvm-65fdb34219f33b2871a532a38814ac4ebea10abc.tar.gz bcm5719-llvm-65fdb34219f33b2871a532a38814ac4ebea10abc.zip | |
[lldb][NFC] Use static_cast instead of reinterpret_cast where possible
Summary: There are a few places in LLDB where we do a `reinterpret_cast` for conversions that we could also do with `static_cast`. This patch moves all this code to `static_cast`.
Reviewers: shafik, JDevlieghere, labath
Reviewed By: labath
Subscribers: arphaman, usaxena95, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D72161
Diffstat (limited to 'lldb/source/Core')
| -rw-r--r-- | lldb/source/Core/Debugger.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp index c4619776c11..33f72a0896c 100644 --- a/lldb/source/Core/Debugger.cpp +++ b/lldb/source/Core/Debugger.cpp @@ -1456,7 +1456,7 @@ void Debugger::DefaultEventHandler() { done = true; } else if (event_type & CommandInterpreter::eBroadcastBitAsynchronousErrorData) { - const char *data = reinterpret_cast<const char *>( + const char *data = static_cast<const char *>( EventDataBytes::GetBytesFromEvent(event_sp.get())); if (data && data[0]) { StreamSP error_sp(GetAsyncErrorStream()); @@ -1467,7 +1467,7 @@ void Debugger::DefaultEventHandler() { } } else if (event_type & CommandInterpreter:: eBroadcastBitAsynchronousOutputData) { - const char *data = reinterpret_cast<const char *>( + const char *data = static_cast<const char *>( EventDataBytes::GetBytesFromEvent(event_sp.get())); if (data && data[0]) { StreamSP output_sp(GetAsyncOutputStream()); |

