Przeglądaj źródła

[Minor] Add noexcept qualifier

tags/3.3
Vsevolod Stakhov 2 lat temu
rodzic
commit
a2f6a34d23
No account linked to committer's email address
1 zmienionych plików z 3 dodań i 3 usunięć
  1. 3
    3
      config.h.in

+ 3
- 3
config.h.in Wyświetl plik

@@ -389,9 +389,9 @@ extern uint64_t ottery_rand_uint64(void);

#ifdef __cplusplus
#define RSPAMD_CONSTRUCTOR(f) \
static void f(void); \
struct f##_t_ { f##_t_(void) { f(); } }; static f##_t_ f##_; \
static void f(void)
static void f(void) noexcept; \
struct f##_t_ { f##_t_(void) noexcept { f(); } }; static f##_t_ f##_; \
static void f(void) noexcept
#else
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
#define RSPAMD_CONSTRUCTOR(f) \

Ładowanie…
Anuluj
Zapisz