Browse Source

[Minor] Add noexcept qualifier

tags/3.3
Vsevolod Stakhov 2 years ago
parent
commit
a2f6a34d23
No account linked to committer's email address
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      config.h.in

+ 3
- 3
config.h.in View File



#ifdef __cplusplus #ifdef __cplusplus
#define RSPAMD_CONSTRUCTOR(f) \ #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 #else
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
#define RSPAMD_CONSTRUCTOR(f) \ #define RSPAMD_CONSTRUCTOR(f) \

Loading…
Cancel
Save