Skip to content

Commit 17b61e8

Browse files
authored
Merge pull request #127 from daichi-ishida/main
Fix 'implicit-int' errors arising from Clang 16
2 parents 35cd308 + 382da2d commit 17b61e8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/lib/third_party/numerics/SUPERLU/cutil.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ cPrintPerf(SuperMatrix *L, SuperMatrix *U, mem_usage_t *mem_usage,
474474

475475

476476

477-
477+
int
478478
print_complex_vec(char *what, int n, complex *vec)
479479
{
480480
int i;

src/lib/third_party/numerics/SUPERLU/dutil.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ dPrintPerf(SuperMatrix *L, SuperMatrix *U, mem_usage_t *mem_usage,
470470

471471

472472

473-
473+
int
474474
print_double_vec(char *what, int n, double *vec)
475475
{
476476
int i;

src/lib/third_party/numerics/SUPERLU/sutil.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ sPrintPerf(SuperMatrix *L, SuperMatrix *U, mem_usage_t *mem_usage,
470470

471471

472472

473-
473+
int
474474
print_float_vec(char *what, int n, float *vec)
475475
{
476476
int i;

src/lib/third_party/numerics/SUPERLU/zutil.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ zPrintPerf(SuperMatrix *L, SuperMatrix *U, mem_usage_t *mem_usage,
474474

475475

476476

477-
477+
int
478478
print_doublecomplex_vec(char *what, int n, doublecomplex *vec)
479479
{
480480
int i;

0 commit comments

Comments
 (0)