fix second instance of complex.h for c++ as well

This commit is contained in:
Martin Kroeker
2019-02-05 19:29:33 +01:00
committed by GitHub
parent 42df9efa0c
commit 1391fc46d2
+8
View File
@@ -70,7 +70,11 @@
/* Complex type (single precision) */
#ifndef lapack_complex_float
#ifndef __cplusplus
#include <complex.h>
#else
#include <complex>
#endif
#define lapack_complex_float float _Complex
#endif
@@ -86,7 +90,11 @@ lapack_complex_float lapack_make_complex_float( float re, float im );
/* Complex type (double precision) */
#ifndef lapack_complex_double
#ifndef __cplusplus
#include <complex.h>
#else
#include <complex>
#endif
#define lapack_complex_double double _Complex
#endif