Base: Fix header uniformity, whitespace, and doxygen

[skip ci]
This commit is contained in:
luz paz
2020-11-22 12:00:16 -05:00
committed by wwmayer
parent 0a6b7dad41
commit d5f6c096b8
77 changed files with 511 additions and 433 deletions

View File

@@ -146,7 +146,7 @@ Unit Unit::pow(signed char exp) const
bool Unit::isEmpty(void)const
{
return (this->Sig.Length == 0)
return (this->Sig.Length == 0)
&& (this->Sig.Mass == 0)
&& (this->Sig.Time == 0)
&& (this->Sig.ElectricCurrent == 0)
@@ -158,7 +158,7 @@ bool Unit::isEmpty(void)const
bool Unit::operator ==(const Unit& that) const
{
return (this->Sig.Length == that.Sig.Length)
return (this->Sig.Length == that.Sig.Length)
&& (this->Sig.Mass == that.Sig.Mass)
&& (this->Sig.Time == that.Sig.Time)
&& (this->Sig.ElectricCurrent == that.Sig.ElectricCurrent)