Skip to content
Snippets Groups Projects
Commit e640e7c7 authored by armar-user's avatar armar-user
Browse files

Add missing override of copySelfEmpty() in aron typed classes

parent b69bcf24
No related branches found
No related tags found
1 merge request!140armem/dev -> master
......@@ -231,6 +231,11 @@ namespace armarx::armem::base
Base::_copySelf(other);
other.aronType() = _aronType;
}
virtual void _copySelfEmpty(DerivedT& other) const override
{
Base::_copySelfEmpty(other);
other.aronType() = _aronType;
}
};
......
......@@ -222,6 +222,11 @@ namespace armarx::armem::base
Base::_copySelf(other);
other.aronType() = _aronType;
}
virtual void _copySelfEmpty(DerivedT& other) const override
{
Base::_copySelfEmpty(other);
other.aronType() = _aronType;
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment