From eeee1e341fa59b5b0b05f974105104fb2a0df9c3 Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Tue, 13 Jan 2026 16:21:59 +0100 Subject: [PATCH] refactor: Remove trailing semicolon after ADD_SIGNALS_DECL_WRAPPER This is redundant and inconsistent, because call-sites are expected to add the semicolon, which they all do. --- src/node/interface_ui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/interface_ui.h b/src/node/interface_ui.h index 2165402fc6d..fe937fc7b14 100644 --- a/src/node/interface_ui.h +++ b/src/node/interface_ui.h @@ -71,7 +71,7 @@ public: #define ADD_SIGNALS_DECL_WRAPPER(signal_name, rtype, ...) \ rtype signal_name(__VA_ARGS__); \ using signal_name##Sig = rtype(__VA_ARGS__); \ - boost::signals2::connection signal_name##_connect(std::function fn); + boost::signals2::connection signal_name##_connect(std::function fn) /** Show message box. */ ADD_SIGNALS_DECL_WRAPPER(ThreadSafeMessageBox, bool, const bilingual_str& message, const std::string& caption, unsigned int style);