View | Details | Raw Unified | Return to issue 16631
Collapse All | Expand All

(-)inc/cppu/macros.hxx (-1 / +1 lines)
Lines 76-82 Link Here
76
    the struct inherits from a base struct the first member is no double or [unsigned] long long.
76
    the struct inherits from a base struct the first member is no double or [unsigned] long long.
77
    @internal
77
    @internal
78
*/
78
*/
79
#if defined(__GNUC__) && (defined(LINUX) || defined(FREEBSD)) && (defined(INTEL) || defined(POWERPC) || defined(X86_64) || defined(S390) || defined(SPARC)) && (__GNUC__ == 3)
79
#if defined(__GNUC__) && (__GNUC__ >= 3)
80
#define CPPU_GCC3_ALIGN( base_struct ) __attribute__ ((aligned (__alignof__ (base_struct))))
80
#define CPPU_GCC3_ALIGN( base_struct ) __attribute__ ((aligned (__alignof__ (base_struct))))
81
#else
81
#else
82
#define CPPU_GCC3_ALIGN( base_struct )
82
#define CPPU_GCC3_ALIGN( base_struct )

Return to issue 16631