Browse Source

Merge pull request #1999 from martin-frbg/issue1996-2

fix second instance of complex.h for c++ as well
tags/v0.3.6^2
Martin Kroeker GitHub 7 years ago
parent
commit
f10408aae8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      lapack-netlib/LAPACKE/include/lapacke.h

+ 4
- 0
lapack-netlib/LAPACKE/include/lapacke.h 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



Loading…
Cancel
Save