mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-02-09 02:59:31 +08:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user