Base: fix pow() of Unit

This commit is contained in:
wmayer
2023-02-27 15:42:46 +01:00
committed by wwmayer
parent c815cb8a82
commit daa23162a4
2 changed files with 39 additions and 19 deletions

View File

@@ -76,7 +76,7 @@ public:
bool operator ==(const Unit&) const;
bool operator !=(const Unit&that) const {return !(*this == that);}
Unit& operator =(const Unit&);
Unit pow(signed char exp)const;
Unit pow(double exp)const;
//@}
/// get the unit signature
const UnitSignature & getSignature()const {return Sig;}