1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-09 13:40:46 +01:00

Still working on the compiler compat checks

This commit is contained in:
paboyle 2017-05-11 11:30:14 +01:00
parent 97a32a6145
commit 238df20370

View File

@ -21,6 +21,8 @@
#else #else
// This macro is annoying many other compilers just define __GNUC__ and claim GCC compat
// but this defeats the use of __GNUC__ to really detect G++
#if defined(__GNUC__) #if defined(__GNUC__)
#if __GNUC__ < 4 #if __GNUC__ < 4
@ -43,11 +45,12 @@
#endif #endif
#endif #endif
#endif #else
#else
#warning "Unknown compiler detected: cannot guarantee compatability since Grid tends to break compilers" #warning "Unknown compiler detected: cannot guarantee compatability since Grid tends to break compilers"
#warning "Ensure to run : make check" #warning "Ensure to run : make check"
#endif
#endif #endif