diff --git a/lib/node_modules/@stdlib/number/float64/base/get-high-word/README.md b/lib/node_modules/@stdlib/number/float64/base/get-high-word/README.md index c876d7542e10..639c5ec23f3f 100644 --- a/lib/node_modules/@stdlib/number/float64/base/get-high-word/README.md +++ b/lib/node_modules/@stdlib/number/float64/base/get-high-word/README.md @@ -144,7 +144,7 @@ void stdlib_base_float64_get_high_word( const double x, uint32_t *high ); #include int main( void ) { - double x[] = { 3.14, -3.14, 0.0, 0.0/0.0 }; + const double x[] = { 3.14, -3.14, 0.0, 0.0/0.0 }; uint32_t high; int i; diff --git a/lib/node_modules/@stdlib/number/float64/base/get-high-word/examples/c/example.c b/lib/node_modules/@stdlib/number/float64/base/get-high-word/examples/c/example.c index 85e8b6da8ba0..b4f484ab1d22 100644 --- a/lib/node_modules/@stdlib/number/float64/base/get-high-word/examples/c/example.c +++ b/lib/node_modules/@stdlib/number/float64/base/get-high-word/examples/c/example.c @@ -21,7 +21,7 @@ #include int main( void ) { - double x[] = { 3.14, -3.14, 0.0, 0.0/0.0 }; + const double x[] = { 3.14, -3.14, 0.0, 0.0/0.0 }; uint32_t high; int i;