mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-22 06:52:36 +01:00
refactor: add self-assign checks to classes which violate the clang-tidy check
Both of these cases appear to be harmless, but adding the tests allows us to turn on the aggressive clang-tidy checks.
This commit is contained in:
parent
0b94fb8720
commit
32b1d13792
3 changed files with 16 additions and 10 deletions
|
@ -43,8 +43,10 @@ public:
|
|||
|
||||
base_uint& operator=(const base_uint& b)
|
||||
{
|
||||
for (int i = 0; i < WIDTH; i++)
|
||||
pn[i] = b.pn[i];
|
||||
if (this != &b) {
|
||||
for (int i = 0; i < WIDTH; i++)
|
||||
pn[i] = b.pn[i];
|
||||
}
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
|
14
src/key.h
14
src/key.h
|
@ -75,13 +75,15 @@ public:
|
|||
|
||||
CKey& operator=(const CKey& other)
|
||||
{
|
||||
if (other.keydata) {
|
||||
MakeKeyData();
|
||||
*keydata = *other.keydata;
|
||||
} else {
|
||||
ClearKeyData();
|
||||
if (this != &other) {
|
||||
if (other.keydata) {
|
||||
MakeKeyData();
|
||||
*keydata = *other.keydata;
|
||||
} else {
|
||||
ClearKeyData();
|
||||
}
|
||||
fCompressed = other.fCompressed;
|
||||
}
|
||||
fCompressed = other.fCompressed;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
|
|
@ -1508,8 +1508,10 @@ struct Tracker
|
|||
Tracker(Tracker&& t) noexcept : origin(t.origin), copies(t.copies) {}
|
||||
Tracker& operator=(const Tracker& t) noexcept
|
||||
{
|
||||
origin = t.origin;
|
||||
copies = t.copies + 1;
|
||||
if (this != &t) {
|
||||
origin = t.origin;
|
||||
copies = t.copies + 1;
|
||||
}
|
||||
return *this;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue