diff options
author | Davi Arnaut <davi.arnaut@oracle.com> | 2010-07-23 17:16:29 -0300 |
---|---|---|
committer | Davi Arnaut <davi.arnaut@oracle.com> | 2010-07-23 17:16:29 -0300 |
commit | 75e22123972f3404cd384839695c9e7b0165565f (patch) | |
tree | 6e64b324e47ec067c848617b8ea8340fde01d8b2 /include/my_attribute.h | |
parent | 7a344b61065080902ad9530d33ed0fa72a1522fa (diff) | |
download | mariadb-git-75e22123972f3404cd384839695c9e7b0165565f.tar.gz |
WL#5498: Remove dead and unused source code
Remove unused macros or macro which are always defined.
include/my_global.h:
Remove unused macros and move macros which aren't used globally.
Diffstat (limited to 'include/my_attribute.h')
-rw-r--r-- | include/my_attribute.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/my_attribute.h b/include/my_attribute.h index 8309d85f20a..d35b3013bdd 100644 --- a/include/my_attribute.h +++ b/include/my_attribute.h @@ -21,6 +21,12 @@ #ifndef _my_attribute_h #define _my_attribute_h +#if defined(__GNUC__) +# ifndef GCC_VERSION +# define GCC_VERSION (__GNUC__ * 1000 + __GNUC_MINOR__) +# endif +#endif + /* Disable __attribute__() on gcc < 2.7, g++ < 3.4, and non-gcc compilers. Some forms of __attribute__ are actually supported in earlier versions of |