Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
6ed561a3
Commit
6ed561a3
authored
Mar 23, 2018
by
Davis King
Browse files
Fix int handling in cblas
parent
23ab5e08
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
dlib/external/cblas/cblas.h
dlib/external/cblas/cblas.h
+1
-1
dlib/external/cblas/cblas_xerbla.c
dlib/external/cblas/cblas_xerbla.c
+1
-1
No files found.
dlib/external/cblas/cblas.h
View file @
6ed561a3
...
...
@@ -572,7 +572,7 @@ void cblas_zher2k(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo,
const
void
*
B
,
const
CBLAS_INT_TYPE
ldb
,
const
double
beta
,
void
*
C
,
const
CBLAS_INT_TYPE
ldc
);
void
cblas_xerbla
(
CBLAS_INT_TYPE
p
,
const
char
*
rout
,
const
char
*
form
,
...);
void
cblas_xerbla
(
int
p
,
const
char
*
rout
,
const
char
*
form
,
...);
#ifdef __cplusplus
}
...
...
dlib/external/cblas/cblas_xerbla.c
View file @
6ed561a3
...
...
@@ -5,7 +5,7 @@
#include "cblas.h"
#include "cblas_f77.h"
void
cblas_xerbla
(
CBLAS_INT_TYPE
info
,
const
char
*
rout
,
const
char
*
form
,
...)
void
cblas_xerbla
(
int
info
,
const
char
*
rout
,
const
char
*
form
,
...)
{
char
empty
[
1
]
=
""
;
va_list
argptr
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment