Commit 4f934943 authored by thomas dettbarn's avatar thomas dettbarn
Browse files

revert to IF() instead of if (), due to them being a violation of the STL guidelines.

parent ed51376f
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -536,7 +536,7 @@ static void ivas_band_cov_fx(
            move16();
            FOR( k = 0; k < num_bins; k++ )
            {
                if ( pV_re_64bit[k] != 0 )
                IF( pV_re_64bit[k] != 0 )
                {
                    q_shift = s_min( q_shift, W_norm( pV_re_64bit[k] ) );
                }
@@ -595,7 +595,7 @@ static void ivas_band_cov_fx(
            move16();
            FOR( k = start_band; k < end_band; k++ )
            {
                if ( cov_real_64bit[i][j][k] != 0 )
                IF( cov_real_64bit[i][j][k] != 0 )
                {
                    q_shift = s_min( q_shift, W_norm( cov_real_64bit[i][j][k] ) );
                }