Kaynağa Gözat

[Minor] Add noexcept qualifier

tags/3.3
Vsevolod Stakhov 2 yıl önce
ebeveyn
işleme
a2f6a34d23
No account linked to committer's email address
1 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  1. 3
    3
      config.h.in

+ 3
- 3
config.h.in Dosyayı Görüntüle

@@ -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…
İptal
Kaydet