[Lldb-commits] [PATCH] D88249: [lldb] Make protected ctor and method of SBAddress take a const reference instead of a pointer.
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Sep 29 04:35:16 PDT 2020
labath added a comment.
cool
================
Comment at: lldb/source/API/SBValue.cpp:1359
- return LLDB_RECORD_RESULT(SBAddress(new Address(addr)));
+ return LLDB_RECORD_RESULT(SBAddress(Address(addr)));
}
----------------
the `Address(` part is redundant.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D88249/new/
https://reviews.llvm.org/D88249
More information about the lldb-commits
mailing list