Browse Source

Fix __attribute__(A) macro (it formerly used bogus __cplusplus__ symbol)

pull/374/head
unknown 19 years ago
parent
commit
bde5116b51
  1. 2
      include/my_global.h

2
include/my_global.h

@ -433,7 +433,7 @@ typedef unsigned short ushort;
# define __attribute__(A)
# elif GCC_VERSION < 2008
# define __attribute__(A)
# elif defined(__cplusplus__) && GCC_VERSION < 3004
# elif defined(__cplusplus) && GCC_VERSION < 3004
# define __attribute__(A)
# endif
#endif

Loading…
Cancel
Save