BUG: fix problem where cmake thinks the intel compiler is gnu

This commit is contained in:
Bill Hoffman 2004-05-18 14:33:12 -04:00
parent 55969dcf23
commit 6b31e5c851
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#ifdef __GNUC__
#if defined(__GNUC__) && !defined(__INTEL_COMPILER)
void THIS_IS_GNU();
#endif
#ifdef __MINGW32__