diff options
author | Pjotr Prins | 2020-05-28 05:39:18 -0500 |
---|---|---|
committer | Pjotr Prins | 2020-05-28 05:39:18 -0500 |
commit | 7c4f7f7f7c4320658828631039f57fadf6bfdb29 (patch) | |
tree | e5f69ca698ee2bdbf15d171cd0dbc9d8bf171dbd /src/gemma.cpp | |
parent | b309569fe9497befa008ac2d2cbc04f2e861ce76 (diff) | |
download | pangemma-7c4f7f7f7c4320658828631039f57fadf6bfdb29.tar.gz |
Fix copiles on gcc 10. Main thing is not to mix BLAS includes from
OpenBLAS, GSL (and Eigen when used).
Diffstat (limited to 'src/gemma.cpp')
-rw-r--r-- | src/gemma.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gemma.cpp b/src/gemma.cpp index 6bc739b..7b955cd 100644 --- a/src/gemma.cpp +++ b/src/gemma.cpp @@ -28,7 +28,7 @@ #ifdef OPENBLAS extern "C" { // these functions are defined in cblas.h - but if we include that we - // conflicts with other BLAS includes + // conflicts with other BLAS includes (GSL) int openblas_get_num_threads(void); int openblas_get_parallel(void); char* openblas_get_config(void); |