Skip to content

Commit

Permalink
no const
Browse files Browse the repository at this point in the history
  • Loading branch information
eggrobin committed Dec 31, 2024
1 parent 4b58a41 commit 8066703
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions numerics/sin_cos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ Value CosImplementation(DoublePrecision<Argument> const θ_reduced) {
#if PRINCIPIA_INLINE_SIN_COS
FORCE_INLINE(inline)
#endif
Value __cdecl Sin(Argument const θ) {
Value __cdecl Sin(Argument θ) {
OSACA_SIN_BEGIN(θ);
DoublePrecision<Argument> θ_reduced;
std::int64_t quadrant;
Expand Down Expand Up @@ -355,7 +355,7 @@ Value __cdecl Sin(Argument const θ) {
#if PRINCIPIA_INLINE_SIN_COS
FORCE_INLINE(inline)
#endif
Value __cdecl Cos(Argument const θ) {
Value __cdecl Cos(Argument θ) {
OSACA_COS_BEGIN(θ);
DoublePrecision<Argument> θ_reduced;
std::int64_t quadrant;
Expand Down

0 comments on commit 8066703

Please sign in to comment.