Merge pull request #1999 from martin-frbg/issue1996-2
fix second instance of complex.h for c++ as well
This commit is contained in:
commit
f10408aae8
|
@ -70,7 +70,11 @@
|
||||||
|
|
||||||
/* Complex type (single precision) */
|
/* Complex type (single precision) */
|
||||||
#ifndef lapack_complex_float
|
#ifndef lapack_complex_float
|
||||||
|
#ifndef __cplusplus
|
||||||
#include <complex.h>
|
#include <complex.h>
|
||||||
|
#else
|
||||||
|
#include <complex>
|
||||||
|
#endif
|
||||||
#define lapack_complex_float float _Complex
|
#define lapack_complex_float float _Complex
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue