Selaa lähdekoodia

[Minor] Add noexcept qualifier

tags/3.3
Vsevolod Stakhov 2 vuotta sitten
vanhempi
commit
a2f6a34d23
No account linked to committer's email address
1 muutettua tiedostoa jossa 3 lisäystä ja 3 poistoa
  1. 3
    3
      config.h.in

+ 3
- 3
config.h.in Näytä tiedosto

@@ -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) \

Loading…
Peruuta
Tallenna