]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Add noexcept qualifier
authorVsevolod Stakhov <vsevolod@rspamd.com>
Sun, 10 Apr 2022 09:21:31 +0000 (10:21 +0100)
committerVsevolod Stakhov <vsevolod@rspamd.com>
Sun, 10 Apr 2022 09:21:31 +0000 (10:21 +0100)
config.h.in

index 9487fd76e656893c68d17877babf8cefd7b78ec8..6d1c03f371e400945968214e6f2651c550d72fe0 100644 (file)
@@ -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) \