Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Signed-off-by: Athan <[email protected]>
  • Loading branch information
kgryte authored Sep 16, 2024
1 parent 863e963 commit cae61f4
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/node_modules/@stdlib/blas/base/sswap/src/sswap.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ void API_SUFFIX(c_sswap)( const CBLAS_INT N, float *X, const CBLAS_INT strideX,
CBLAS_INT ox;
CBLAS_INT oy;

if ( N <= 0 ) {
return;
}
ox = stdlib_strided_stride2offset( N, strideX );
oy = stdlib_strided_stride2offset( N, strideY );
API_SUFFIX(c_sswap_ndarray)( N, X, strideX, ox, Y, strideY, oy );
Expand Down

0 comments on commit cae61f4

Please sign in to comment.