mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-23 22:15:37 +08:00
removed operator= and copy ctor from classes where they only duplicated the behaviour of the default implementations that C++ generates automatically
This commit is contained in:
@@ -224,19 +224,6 @@ public:
|
||||
this->m_transponderCode = 2000;
|
||||
}
|
||||
|
||||
/*!
|
||||
* \brief Assigment operator =
|
||||
* \param other
|
||||
* \return
|
||||
*/
|
||||
CTransponder &operator =(const CTransponder &other)
|
||||
{
|
||||
this->CAvionicsBase::operator =(other);
|
||||
this->m_transponderMode = other.m_transponderMode;
|
||||
this->m_transponderCode = other.m_transponderCode;
|
||||
return *this;
|
||||
}
|
||||
|
||||
/*!
|
||||
* \brief operator ==
|
||||
* \param other
|
||||
|
||||
Reference in New Issue
Block a user