style fixes: mostly just things that make my eyes bleed :)

This commit is contained in:
Mathew Sutcliffe
2013-08-13 22:29:48 +01:00
parent e8b52b33d0
commit 2c781e8b36
50 changed files with 975 additions and 917 deletions

View File

@@ -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