Revert "[clang-tidy] Use default to initialize constructors"

This reverts commit bf40ea8816.
This commit is contained in:
Paul Beckingham
2020-12-05 16:18:15 -05:00
parent aa841f98c9
commit ead50d4d6e
3 changed files with 29 additions and 4 deletions

View File

@@ -166,7 +166,19 @@ const std::string& Variant::source () const
}
////////////////////////////////////////////////////////////////////////////////
Variant& Variant::operator= (const Variant& other) = default;
Variant& Variant::operator= (const Variant& other)
{
_type = other._type;
_bool = other._bool;
_integer = other._integer;
_real = other._real;
_string = other._string;
_date = other._date;
_duration = other._duration;
_source = other._source;
return *this;
}
////////////////////////////////////////////////////////////////////////////////
bool Variant::operator&& (const Variant& other) const