We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd97fcd commit 008761fCopy full SHA for 008761f
include/private/dsp/arch/generic/pmath/log.h
@@ -33,13 +33,13 @@ namespace lsp
33
void logb1(float *dst, size_t count)
34
{
35
for (size_t i=0; i<count; ++i)
36
- dst[i] = ::logf(dst[i]) * (float)M_LOG2E;
+ dst[i] = ::logf(dst[i]) * M_LOG2E;
37
}
38
39
void logb2(float *dst, const float *src, size_t count)
40
41
42
- dst[i] = ::logf(src[i]) * (float)M_LOG2E;
+ dst[i] = ::logf(src[i]) * M_LOG2E;
43
44
45
void loge1(float *dst, size_t count)
0 commit comments