We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
const
1 parent 4124fb7 commit 7bb5cc5Copy full SHA for 7bb5cc5
lib/node_modules/@stdlib/ndarray/base/ind2sub/benchmark/c/benchmark.c
@@ -99,11 +99,11 @@ static double benchmark1( void ) {
99
double t;
100
int i;
101
102
- int64_t ndims = 3;
+ const int64_t ndims = 3;
103
const int64_t shape[] = { 10, 10, 10 };
104
const int64_t strides[] = { 100, -10, 1 };
105
- int64_t offset = 90;
106
- int64_t len = 1000;
+ const int64_t offset = 90;
+ const int64_t len = 1000;
107
108
int64_t out[ 3 ];
109
0 commit comments