Skip to content

Commit 78ce632

Browse files
committed
I used a more recent version of clang-format. Hopefully this will
fix the failed builds in CI.
1 parent 7873a34 commit 78ce632

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

include/xsf/mathieu/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,3 @@ outputs match those from Matlab. The code in main() also shows how to
3636
invoke the various fcns.
3737

3838
Summer 2025, SDB
39-

include/xsf/mathieu/mathieu_coeffs.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@
2424
#ifdef __cplusplus
2525
extern "C" {
2626
#endif
27-
void dsyevd_(char *jobz, char *uplo, int *n, double *a, int *lda, double *w, double *work, int *lwork, int *iwork,
28-
int *liwork, int *info);
27+
void dsyevd_(
28+
char *jobz, char *uplo, int *n, double *a, int *lda, double *w, double *work, int *lwork, int *iwork, int *liwork,
29+
int *info
30+
);
2931
#ifdef __cplusplus
3032
}
3133
#endif

include/xsf/mathieu/mathieu_eigs.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@
2222
#ifdef __cplusplus
2323
extern "C" {
2424
#endif
25-
void dsyevd_(char *jobz, char *uplo, int *n, double *a, int *lda, double *w, double *work, int *lwork, int *iwork,
26-
int *liwork, int *info);
25+
void dsyevd_(
26+
char *jobz, char *uplo, int *n, double *a, int *lda, double *w, double *work, int *lwork, int *iwork, int *liwork,
27+
int *info
28+
);
2729
#ifdef __cplusplus
2830
}
2931
#endif

0 commit comments

Comments
 (0)