From: Vsevolod Stakhov Date: Sun, 10 Apr 2022 09:21:31 +0000 (+0100) Subject: [Minor] Add noexcept qualifier X-Git-Tag: 3.3~293^2~39 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a2f6a34d233b718eac67572a091e456b1c368004;p=rspamd.git [Minor] Add noexcept qualifier --- diff --git a/config.h.in b/config.h.in index 9487fd76e..6d1c03f37 100644 --- a/config.h.in +++ b/config.h.in @@ -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) \