diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-06-07 03:43:55 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-06-07 03:43:55 +0200 |
commit | 9a485dcda3ddb0c9e1344df3f753905cc6c9a43b (patch) | |
tree | 4a4057632a77c58b6f70106510695af18230f675 | |
parent | 7724937b96187b6d6d35818ab4c5eb24721adfee (diff) |
fix warning
-rw-r--r-- | defs.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -55,7 +55,7 @@ struct key_error final : exception { _e.file = __FILE__; \ _e.function = FUNCTION_NAME; \ std::snprintf(_e.msg, sizeof(_e.msg), __VA_ARGS__); \ - throw _e; \ + throw _e;/*NOLINT(misc-throw-by-value-catch-by-reference)*/ \ }()) #define ABORT(...) \ |