Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/ext/base/dsortsh/src/dsortsh.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ void c_dsortsh( const int64_t N, const double order, double *X, const int64_t st
bool flg;

// Ciura's gap sequence:
const static int64_t GAPS[] = { 701, 301, 132, 57, 23, 10, 4, 1 };
const static int64_t NGAPS = 8;
static const int64_t GAPS[] = { 701, 301, 132, 57, 23, 10, 4, 1 };
static const int64_t NGAPS = 8;

if ( N <= 0 || order == 0.0 ) {
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
* limitations under the License.
*/

/* eslint-disable-next-line max-lines */

'use strict';

// MODULES //
Expand Down Expand Up @@ -482,7 +484,7 @@

file = readFile( README, FOPTS );
if ( file instanceof Error ) {
throw file;

Check warning on line 487 in lib/node_modules/@stdlib/ndarray/base/every/scripts/predicate_loops.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

File has too many lines (409). Maximum allowed is 300
}
docs = [];
for ( i = 0; i < signatures.length; i++ ) {
Expand Down
Loading