Skip to content
Snippets Groups Projects
Commit 8efc90d7 authored by jcarpent's avatar jcarpent
Browse files

[C++][Bug] remove useless assignment operator

Those assignments lead to infinite recursion loops
parent 466188c1
No related branches found
No related tags found
No related merge requests found
......@@ -166,18 +166,6 @@ namespace se3
return ::se3::shortname(*this);
}
JointModel& operator=( const JointModel& other)
{
*this = other;
return *this;
}
JointModel& operator=( const JointModelVariant& other)
{
*this = other;
return *this;
}
template <class D>
bool operator == (const JointModelBase<D> &) const
{
......
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