Skip to content

Commit 008761f

Browse files
jaschiusadko4u
authored andcommitted
Revert generic/pmath/log.h as it wasn't necessary in successful bulid
1 parent fd97fcd commit 008761f

File tree

1 file changed

+2
-2
lines changed
  • include/private/dsp/arch/generic/pmath

1 file changed

+2
-2
lines changed

include/private/dsp/arch/generic/pmath/log.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ namespace lsp
3333
void logb1(float *dst, size_t count)
3434
{
3535
for (size_t i=0; i<count; ++i)
36-
dst[i] = ::logf(dst[i]) * (float)M_LOG2E;
36+
dst[i] = ::logf(dst[i]) * M_LOG2E;
3737
}
3838

3939
void logb2(float *dst, const float *src, size_t count)
4040
{
4141
for (size_t i=0; i<count; ++i)
42-
dst[i] = ::logf(src[i]) * (float)M_LOG2E;
42+
dst[i] = ::logf(src[i]) * M_LOG2E;
4343
}
4444

4545
void loge1(float *dst, size_t count)

0 commit comments

Comments
 (0)