aboutsummaryrefslogtreecommitdiff
path: root/src/gemma.cpp
diff options
context:
space:
mode:
authorPjotr Prins2020-05-28 05:39:18 -0500
committerPjotr Prins2020-05-28 05:39:18 -0500
commit7c4f7f7f7c4320658828631039f57fadf6bfdb29 (patch)
treee5f69ca698ee2bdbf15d171cd0dbc9d8bf171dbd /src/gemma.cpp
parentb309569fe9497befa008ac2d2cbc04f2e861ce76 (diff)
downloadpangemma-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.cpp2
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);