Skip to content

Commit 60948ab

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent d4a3658 commit 60948ab

File tree

1 file changed

+0
-3
lines changed
  • lib/node_modules/@stdlib/blas/base/zdotc/lib

1 file changed

+0
-3
lines changed

lib/node_modules/@stdlib/blas/base/zdotc/lib/zdotc.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,6 @@ var ndarray = require( './ndarray.js' );
4949
function zdotc( N, x, strideX, y, strideY ) {
5050
var ix;
5151
var iy;
52-
if ( N <= 0 ) {
53-
return new Complex128( 0, 0 );
54-
}
5552
ix = stride2offset( N, strideX );
5653
iy = stride2offset( N, strideY );
5754
return ndarray( N, x, strideX, ix, y, strideY, iy );

0 commit comments

Comments
 (0)