diff --git a/AngleUsing.h b/AngleUsing.h index d6eb4d0..156fd6e 100644 --- a/AngleUsing.h +++ b/AngleUsing.h @@ -14,7 +14,7 @@ public: inline T GetValue() const { return this->value; } AngleUsing operator+(const AngleUsing a) { - AngleUsing r = AngleUsing(this->value + a.value); + AngleUsing r = AngleUsing((float)this->value + a.value); return r; }