dispatcher: help std::is_copy_constructible to solve its problems with std::vector :)

This commit is contained in:
Michele Caini
2021-03-10 08:51:06 +01:00
parent 785cd6bc11
commit c151d55237

View File

@@ -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.
*