BUG: fix problem where cmake thinks the intel compiler is gnu
This commit is contained in:
parent
55969dcf23
commit
6b31e5c851
|
@ -1,4 +1,4 @@
|
||||||
#ifdef __GNUC__
|
#if defined(__GNUC__) && !defined(__INTEL_COMPILER)
|
||||||
void THIS_IS_GNU();
|
void THIS_IS_GNU();
|
||||||
#endif
|
#endif
|
||||||
#ifdef __MINGW32__
|
#ifdef __MINGW32__
|
||||||
|
|
Loading…
Reference in New Issue