mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-20 12:35:43 +08:00
style fixes: mostly just things that make my eyes bleed :)
This commit is contained in:
@@ -33,9 +33,9 @@ public:
|
||||
|
||||
/*!
|
||||
* \brief Copy constructor
|
||||
* \param latitude
|
||||
* \param other
|
||||
*/
|
||||
CLatitude(const CLatitude &latitude) : CEarthAngle(latitude) {}
|
||||
CLatitude(const CLatitude &other) : CEarthAngle(other) {}
|
||||
|
||||
/*!
|
||||
* \brief Constructor
|
||||
@@ -48,13 +48,12 @@ public:
|
||||
* \param value
|
||||
* \param unit
|
||||
*/
|
||||
CLatitude(double value, const BlackMisc::PhysicalQuantities::CAngleUnit &unit): CEarthAngle(value, unit) {}
|
||||
CLatitude(double value, const BlackMisc::PhysicalQuantities::CAngleUnit &unit) : CEarthAngle(value, unit) {}
|
||||
|
||||
/*!
|
||||
* \brief Virtual destructor
|
||||
*/
|
||||
virtual ~CLatitude() {}
|
||||
|
||||
};
|
||||
|
||||
} // namespace
|
||||
|
||||
Reference in New Issue
Block a user