Cleanup: Remove unnecessary manual of move constructor

Turns out this isn't actually necessary.
This commit is contained in:
Hans Goudey 2021-09-16 12:32:40 -05:00
parent f81bacd6f0
commit db7fca3588
1 changed files with 1 additions and 9 deletions

View File

@ -265,15 +265,7 @@ class OutputAttribute {
{
}
OutputAttribute(OutputAttribute &&other)
: varray_(std::move(other.varray_)),
domain_(other.domain_),
save_(other.save_),
optional_span_varray_(std::move(other.optional_span_varray_)),
ignore_old_values_(other.ignore_old_values_),
save_has_been_called_(other.save_has_been_called_)
{
}
OutputAttribute(OutputAttribute &&other) = default;
~OutputAttribute();