fix(memory): using the overloaded & instead of std::addressof
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
light7734 2025-09-24 10:34:28 +03:30
parent bf8ffc3dc9
commit bf6f2e9981
Signed by: light7734
GPG key ID: 8C30176798F1A6BA

View file

@ -30,7 +30,7 @@ public:
auto operator=(NullOnMove &&other) noexcept -> NullOnMove &
{
if (this == &other)
if (this == std::addressof(other))
{
return *this;
}