Skip to content

Commit

Permalink
lichen-community-systemsgh-52: Ensuring all constants are actually co…
Browse files Browse the repository at this point in the history
…nstant, for MSVC.
  • Loading branch information
colinbdclark committed Sep 13, 2022
1 parent 8f21ae5 commit aa28629
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libsignaletic/include/libsignaletic.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ extern "C" {
#endif

static const float sig_PI = 3.14159265358979323846f;
static const float sig_TWOPI = 2.0f * sig_PI;
static const float sig_RECIP_TWOPI = 1.0f / sig_TWOPI;
static const float sig_TWOPI = 6.283185307179586f;
static const float sig_RECIP_TWOPI = 0.159154943091895f;

/**
* Returns the smaller of two floating point arguments.
Expand Down

0 comments on commit aa28629

Please sign in to comment.