drop missing ;

This commit is contained in:
Naios 2015-07-21 19:10:02 +02:00
parent a861f16af2
commit aa5e4c7e1e

View File

@ -104,7 +104,7 @@ inline auto make_shared_callback(_CTy&& callback)
{ {
return std::make_shared<callback_of_t<_CTy>> return std::make_shared<callback_of_t<_CTy>>
(std::forward<callback_of_t<_CTy>>(callback)); (std::forward<callback_of_t<_CTy>>(callback));
}; }
/// Creates a weak callback which wraps the given shared or weak callback. /// Creates a weak callback which wraps the given shared or weak callback.
/// If the given managed callback expires the callback is not invoked anymore. /// If the given managed callback expires the callback is not invoked anymore.