Fix weak vtables

This commit is contained in:
Roland Winklmeier
2018-08-24 15:25:47 +02:00
parent 4cf3bc580f
commit 5e38936fd2
30 changed files with 133 additions and 8 deletions

View File

@@ -18,6 +18,29 @@ namespace BlackMisc
{
using BlackMisc::Math::CMathUtils;
// pin vtables to this file
void CLengthUnit::anchor()
{ }
void CFrequencyUnit::anchor()
{ }
void CMassUnit::anchor()
{ }
void CPressureUnit::anchor()
{ }
void CTemperatureUnit::anchor()
{ }
void CSpeedUnit::anchor()
{ }
void CAccelerationUnit::anchor()
{ }
QString CAngleUnit::makeRoundedQStringWithUnit(double value, int digits, bool i18n) const
{
if (digits < 0) digits = this->getDisplayDigits();