Skip to content

Commit 6612834

Browse files
author
Martin Klang
committed
change assert() to ASSERT()
1 parent dbd1d73 commit 6612834

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

LibSource/ComplexShortArray.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ void ComplexShortArray::complexByComplexMultiplication(ComplexShortArray operand
8585
#ifdef ARM_CORTEX
8686
arm_cmplx_mult_cmplx_q15((int16_t*)getData(), (int16_t*)operand2.getData(), (int16_t*)result.getData(), size );
8787
#else
88-
assert(false, "TODO");
88+
ASSERT(false, "TODO");
8989
float *pSrcA=(float*)data;
9090
float *pSrcB=(float*)operand2;
9191
float *pDst=(float*)result;

LibSource/ShortFastFourierTransform.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ ShortFastFourierTransform::ShortFastFourierTransform(int aSize){
4747
}
4848

4949
ShortFastFourierTransform::~ShortFastFourierTransform(){
50-
assert(false, "TODO");
50+
ASSERT(false, "TODO");
5151
ComplexShortArray::destroy(temp);
5252
}
5353

0 commit comments

Comments
 (0)