Skip to content

Commit

Permalink
Oops, forgot to remove const
Browse files Browse the repository at this point in the history
  • Loading branch information
Emilie Gillet committed Mar 3, 2021
1 parent 2c6f816 commit 6fe8d32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dsp/dsp.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ inline float InterpolateWrap(const float* table, float index, float size) {
return a + (b - a) * index_fractional;
}

inline float SmoothStep(float value) const {
inline float SmoothStep(float value) {
return value * value * (3.0f - 2.0f * value);
}

Expand Down

0 comments on commit 6fe8d32

Please sign in to comment.