[Lldb-commits] [PATCH] D121844: Applying clang-tidy modernize-use-equals-default over LLDB
Shafik Yaghmour via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 16 13:48:17 PDT 2022
shafik added inline comments.
================
Comment at: lldb/source/Core/Value.cpp:667
-const ValueList &ValueList::operator=(const ValueList &rhs) {
+const ValueList &ValueList::operator=(const ValueList &rhs) { // NOLINT(modernize-use-equals-default)
m_values = rhs.m_values;
----------------
I have to look into why we return a `const &` here. We do this in a few other places too.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D121844/new/
https://reviews.llvm.org/D121844
More information about the lldb-commits
mailing list