diff options
author | Michael Meeks <michael.meeks@suse.com> | 2012-02-14 14:14:38 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-02-14 14:15:52 +0000 |
commit | 3e41d0bf6a8d77ffa30889cf8b7ebdb5c7910792 (patch) | |
tree | df96b5d00dfb7f27717bee858bb56a04f13d1e6c /cppu | |
parent | 84d21e4de26bd69f7ca5b10f2c72779f07e11347 (diff) |
cleanup: remove remenants of gcc version checking
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/inc/cppu/macros.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppu/inc/cppu/macros.hxx b/cppu/inc/cppu/macros.hxx index 78df3151be8c..3d99bc9e4c61 100644 --- a/cppu/inc/cppu/macros.hxx +++ b/cppu/inc/cppu/macros.hxx @@ -45,7 +45,7 @@ struct to become 8 instead of 4 if CPPU_GCC3_ALIGN were added to its first member.) */ -#if defined(__GNUC__) && (__GNUC__ >= 3) +#if defined(__GNUC__) #define CPPU_GCC3_ALIGN( base_struct ) __attribute__ ((aligned (__alignof__ (base_struct)))) #else #define CPPU_GCC3_ALIGN( base_struct ) |