diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-06-18 01:04:06 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-06-18 01:04:06 +0200 |
commit | a8a58d1c98cfc5ca4918a577acc461bc0588c19b (patch) | |
tree | 53638932fc037e4f652c2ccf2a1f3750417e8717 /src/test | |
parent | python2 can be used (diff) | |
download | libgamma-a8a58d1c98cfc5ca4918a577acc461bc0588c19b.tar.gz libgamma-a8a58d1c98cfc5ca4918a577acc461bc0588c19b.tar.bz2 libgamma-a8a58d1c98cfc5ca4918a577acc461bc0588c19b.tar.xz |
remove __attribute__ if not using gcc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/methods.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/methods.h b/src/test/methods.h index a80b02e..8e99921 100644 --- a/src/test/methods.h +++ b/src/test/methods.h @@ -19,6 +19,10 @@ #define LIBGAMMA_TEST_METHODS_H +#ifndef __GNUC__ +# define __attribute__() +#endif + /** * Get the name representation of an * adjustment method by its identifier. |