summaryrefslogtreecommitdiffstats
path: root/cppu
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2012-02-14 14:14:38 +0000
committerMichael Meeks <michael.meeks@suse.com>2012-02-14 14:15:52 +0000
commit3e41d0bf6a8d77ffa30889cf8b7ebdb5c7910792 (patch)
treedf96b5d00dfb7f27717bee858bb56a04f13d1e6c /cppu
parentodbc 64 bit crash: correct buffer length allocation for a SQLLEN (diff)
downloadcore-3e41d0bf6a8d77ffa30889cf8b7ebdb5c7910792.tar.gz
core-3e41d0bf6a8d77ffa30889cf8b7ebdb5c7910792.zip
cleanup: remove remenants of gcc version checking
Diffstat (limited to 'cppu')
-rw-r--r--cppu/inc/cppu/macros.hxx2
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 )