mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-08 19:26:45 +00:00
refactor: Enable more clang-tidy readability checks (#6595)
Co-authored-by: Sergey Kuznetsov <kuzzz99@gmail.com>
This commit is contained in:
@@ -60,7 +60,7 @@ STVar::operator=(STVar const& rhs)
|
||||
if (&rhs != this)
|
||||
{
|
||||
destroy();
|
||||
if (rhs.p_)
|
||||
if (rhs.p_ != nullptr)
|
||||
{
|
||||
p_ = rhs.p_->copy(max_size, &d_);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user