dispatcher: help std::is_copy_constructible to solve its problems with std::vector :)
This commit is contained in:
@@ -101,6 +101,15 @@ class dispatcher {
|
||||
}
|
||||
|
||||
public:
|
||||
/*! @brief Default constructor. */
|
||||
dispatcher() = default;
|
||||
|
||||
/*! @brief Default move constructor. */
|
||||
dispatcher(dispatcher &&) = default;
|
||||
|
||||
/*! @brief Default move assignment operator. @return This dispatcher. */
|
||||
dispatcher & operator=(dispatcher &&) = default;
|
||||
|
||||
/**
|
||||
* @brief Returns a sink object for the given event.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user