00001 00002 00003 // a bunch of macro for compiler control. 00004 // TODO FIXME, currently tied to gcc. 00005 00006 #pragma once 00007 00008 #define ABI_W_NO_CONST_QUAL \ 00009 _Pragma("GCC diagnostic push") \ 00010 _Pragma("GCC diagnostic ignored \"-Wcast-qual\"") 00011 00012 #define ABI_W_POP 00013 _Pragma("GCC diagnostic pop")