Leave out the Fortran character length arguments when compiling with emscripten
This commit is contained in:
parent
ff9a9222e3
commit
5b14be1f35
|
@ -34,7 +34,11 @@
|
|||
|
||||
lapack_logical LAPACKE_lsame( char ca, char cb )
|
||||
{
|
||||
return (lapack_logical) LAPACK_lsame( &ca, &cb, 1, 1 );
|
||||
return (lapack_logical) LAPACK_lsame( &ca, &cb
|
||||
#ifndef __EMSCRIPTEN__
|
||||
, 1, 1
|
||||
#endif
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue