Skip to content

Commit 561f98e

Browse files
committed
fix: update include path and fix typo
1 parent 3ade07d commit 561f98e

File tree

2 files changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/blas/base

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/diagonal-types/include/stdlib/blas/base/diagonal_types.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ enum STDLIB_BLAS_DIAGONAL_TYPE {
2727
STDLIB_BLAS_NON_UNIT_DIAGONAL = 131,
2828

2929
// Elements along a diagonal are all equal to one:
30-
STDLIB_BLAS_UINT_DIAGONAL = 132
30+
STDLIB_BLAS_UNIT_DIAGONAL = 132
3131
};
3232

3333
#endif // !STDLIB_BLAS_BASE_DIAGONAL_TYPES_H

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#define STDLIB_BLAS_BASE_SHARED_CBLAS_H
2121

2222
#include "stdlib/blas/base/diagonal_types.h"
23-
#include "stdlib/blas/base/orders.h"
23+
#include "stdlib/blas/base/layouts.h"
2424
#include "stdlib/blas/base/transpose_operations.h"
2525
#include <stddef.h>
2626
#include <stdint.h>

0 commit comments

Comments
 (0)