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.
This commit is contained in:
MarcoFalke
2026-01-13 16:21:59 +01:00
parent 62557c9529
commit eeee1e341f

View File

@@ -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<signal_name##Sig> fn);
boost::signals2::connection signal_name##_connect(std::function<signal_name##Sig> fn)
/** Show message box. */
ADD_SIGNALS_DECL_WRAPPER(ThreadSafeMessageBox, bool, const bilingual_str& message, const std::string& caption, unsigned int style);