- Fixed warning.

This commit is contained in:
drfrag 2020-10-03 12:30:03 +02:00
parent 636d46c1ed
commit 20f5b6e92d

View file

@ -1149,7 +1149,7 @@ struct TAngle
TAngle &operator= (double other)
{
Degrees = other;
Degrees = (decltype(Degrees))other;
return *this;
}