[Lldb-commits] [PATCH] D82857: [LLDB] Add per-thread register infos shared pointer in gdb-remote
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Dec 4 02:43:18 PST 2020
labath added inline comments.
================
Comment at: lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.h:29
+ DynamicRegisterInfo(DynamicRegisterInfo &) = default;
void operator=(DynamicRegisterInfo &) = delete;
----------------
rovka wrote:
> I think operator= should be default too if the copy constructor is default.
Yeah, we can make both of them protected to avoid accidental use.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82857/new/
https://reviews.llvm.org/D82857
More information about the lldb-commits
mailing list