Преглед на файлове

[Minor] Compilation error with __has_attribuute operator

GCC recommands to add alternative to __has_attribute operator:

https://gcc.gnu.org/onlinedocs/cpp/_005f_005fhas_005fattribute.html
tags/2.5
Thierry Fournier преди 4 години
родител
ревизия
1f45648464
променени са 1 файла, в които са добавени 6 реда и са изтрити 2 реда
  1. 6
    2
      config.h.in

+ 6
- 2
config.h.in Целия файл

@@ -375,8 +375,12 @@ typedef off_t goffset;
# endif
#elif defined(__GNUC__)
/* GCC based */
# if __has_attribute(__no_sanitize_address__)
# define RSPAMD_NO_SANITIZE __attribute__((no_sanitize_address))
# if defined(__has_attribute)
# if __has_attribute(__no_sanitize_address__)
# define RSPAMD_NO_SANITIZE __attribute__((no_sanitize_address))
# else
# define RSPAMD_NO_SANITIZE
# endif
# else
# define RSPAMD_NO_SANITIZE
# endif

Loading…
Отказ
Запис