From 7800d5be9557ad24d5108903755e9bccbcc8cd33 Mon Sep 17 00:00:00 2001 From: GeoDaoyu Date: Tue, 9 Dec 2025 09:47:28 +0800 Subject: [PATCH] chore: fix C lint errors (issue #8895) --- .../@stdlib/number/float64/base/get-high-word/README.md | 2 +- .../number/float64/base/get-high-word/examples/c/example.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;