Skip to content

Commit 0992fe2

Browse files
committed
fix: replace semicolons with commas
1 parent 9174c02 commit 0992fe2

File tree

1 file changed

+11
-11
lines changed
  • lib/node_modules/@stdlib/blas/base/shared/include/stdlib/blas/base/shared

1 file changed

+11
-11
lines changed

lib/node_modules/@stdlib/blas/base/shared/include/stdlib/blas/base/shared/cblas.h

+11-11
Original file line numberDiff line numberDiff line change
@@ -66,57 +66,57 @@ extern "C" {
6666
#ifndef CBLAS_LAYOUT
6767
typedef enum CBLAS_LAYOUT {
6868
// Row-major order (C-style):
69-
CblasRowMajor = 101;
69+
CblasRowMajor = 101,
7070

7171
// Column-major order (Fortran-style):
72-
CblasColMajor = 102;
72+
CblasColMajor = 102,
7373
} CBLAS_LAYOUT;
7474
#endif
7575

7676
// Transpose operation:
7777
#ifndef CBLAS_TRANSPOSE
7878
typedef enum CBLAS_TRANSPOSE {
7979
// No transposition:
80-
CblasNoTrans = 111;
80+
CblasNoTrans = 111,
8181

8282
// Transposition:
83-
CblasTrans = 112;
83+
CblasTrans = 112,
8484

8585
// Conjugate transposition:
86-
CblasConjTrans = 113;
86+
CblasConjTrans = 113,
8787
} CBLAS_TRANSPOSE;
8888
#endif
8989

9090
// Upper/lower triangular:
9191
#ifndef CBLAS_UPLO
9292
typedef enum CBLAS_UPLO {
9393
// Upper triangular:
94-
CblasUpper = 121;
94+
CblasUpper = 121,
9595

9696
// Lower triangular:
97-
CblasLower = 122;
97+
CblasLower = 122,
9898
} CBLAS_UPLO;
9999
#endif
100100

101101
// Diagonal matrix:
102102
#ifndef CBLAS_DIAG
103103
typedef enum CBLAS_DIAG {
104104
// Non-unit:
105-
CblasNonUnit = 131;
105+
CblasNonUnit = 131,
106106

107107
// Unit:
108-
CblasUnit = 132;
108+
CblasUnit = 132,
109109
} CBLAS_DIAG;
110110
#endif
111111

112112
// Operation side:
113113
#ifndef CBLAS_SIDE
114114
typedef enum CBLAS_SIDE {
115115
// Left-side:
116-
CblasLeft = 141;
116+
CblasLeft = 141,
117117

118118
// Right-side:
119-
CblasRight = 142;
119+
CblasRight = 142,
120120
} CBLAS_SIDE;
121121
#endif
122122

0 commit comments

Comments
 (0)