Skip to content

Commit

Permalink
Fix it on other compilers.
Browse files Browse the repository at this point in the history
  • Loading branch information
rburema committed Jul 2, 2024
1 parent c2ae17e commit 653e9fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/settings/types/Angle.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class AngleRadians
/*
* \brief Translate the double value in degrees to an AngleRadians instance.
*/
const AngleRadians(double value)
AngleRadians(double value)
: value_(std::fmod(std::fmod(value, TAU) + TAU, TAU))
{
}
Expand Down

0 comments on commit 653e9fe

Please sign in to comment.