We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42df9ef commit 1391fc4Copy full SHA for 1391fc4
lapack-netlib/LAPACKE/include/lapacke.h
@@ -70,7 +70,11 @@
70
71
/* Complex type (single precision) */
72
#ifndef lapack_complex_float
73
+#ifndef __cplusplus
74
#include <complex.h>
75
+#else
76
+#include <complex>
77
+#endif
78
#define lapack_complex_float float _Complex
79
#endif
80
@@ -86,7 +90,11 @@ lapack_complex_float lapack_make_complex_float( float re, float im );
86
90
87
91
/* Complex type (double precision) */
88
92
#ifndef lapack_complex_double
93
89
94
95
96
97
98
#define lapack_complex_double double _Complex
99
100
0 commit comments