1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 07:55:35 +00: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
// 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 __GNUC__ < 4
@ -43,11 +45,12 @@
#endif
#endif
#endif
#else
#else
#warning "Unknown compiler detected: cannot guarantee compatability since Grid tends to break compilers"
#warning "Ensure to run : make check"
#warning "Unknown compiler detected: cannot guarantee compatability since Grid tends to break compilers"
#warning "Ensure to run : make check"
#endif
#endif