mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-28 21:33:11 +02:00
refactor: Rename ambiguous interfaces::MakeHandler functions
This commit is contained in:
@@ -29,10 +29,10 @@ public:
|
||||
};
|
||||
|
||||
//! Return handler wrapping a boost signal connection.
|
||||
std::unique_ptr<Handler> MakeHandler(boost::signals2::connection connection);
|
||||
std::unique_ptr<Handler> MakeSignalHandler(boost::signals2::connection connection);
|
||||
|
||||
//! Return handler wrapping a cleanup function.
|
||||
std::unique_ptr<Handler> MakeHandler(std::function<void()> cleanup);
|
||||
std::unique_ptr<Handler> MakeCleanupHandler(std::function<void()> cleanup);
|
||||
|
||||
} // namespace interfaces
|
||||
|
||||
|
Reference in New Issue
Block a user