mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-27 11:05:44 +08:00
refs #74 , removed default initializers (https://dev.vatsim-germany.org/issues/74#note-5) . Fixed ==
This commit is contained in:
@@ -15,8 +15,7 @@ namespace BlackSim
|
|||||||
* Constructor
|
* Constructor
|
||||||
*/
|
*/
|
||||||
CAircraftMapping::CAircraftMapping() :
|
CAircraftMapping::CAircraftMapping() :
|
||||||
m_mappingId(CAircraftMapping::InvalidId), m_proposalId(CAircraftMapping::InvalidId), m_fsAircraftKey(), m_icaoAircraftDesignator(), m_icaoAirlineDesignator(),
|
m_mappingId(CAircraftMapping::InvalidId), m_proposalId(CAircraftMapping::InvalidId), m_lastChanged(-1), m_simulator(BlackSim::CSimulator::UnspecifiedSim())
|
||||||
m_icaoAircraftType(), m_icaoWakeTurbulenceCategory(), m_painting(), m_lastChanged(-1), m_simulator(BlackSim::CSimulator::UnspecifiedSim())
|
|
||||||
{
|
{
|
||||||
// void
|
// void
|
||||||
}
|
}
|
||||||
@@ -43,7 +42,12 @@ namespace BlackSim
|
|||||||
if (this == &otherMapping) return true;
|
if (this == &otherMapping) return true;
|
||||||
return
|
return
|
||||||
this->m_mappingId == otherMapping.m_mappingId &&
|
this->m_mappingId == otherMapping.m_mappingId &&
|
||||||
this->m_proposalId == otherMapping.m_proposalId;
|
this->m_proposalId == otherMapping.m_proposalId &&
|
||||||
|
this->m_changed == otherMapping.m_changed &&
|
||||||
|
this->m_icaoAircraftDesignator == otherMapping.m_icaoAircraftDesignator &&
|
||||||
|
this->m_icaoAircraftType == otherMapping.m_icaoAircraftType &&
|
||||||
|
this->m_icaoAirlineDesignator == otherMapping.m_icaoAirlineDesignator &&
|
||||||
|
this->m_icaoWakeTurbulenceCategory == otherMapping.m_icaoWakeTurbulenceCategory;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
Reference in New Issue
Block a user