0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-26 18:38:52 +02:00

ircd::util::callbacks: Add default void prototype to template.

This commit is contained in:
Jason Volk 2019-09-30 14:10:26 -07:00
parent c7cf1ab62a
commit 7fd40513f4

View file

@ -26,7 +26,7 @@ inline namespace util
/// to the caller. If they propagate, all listeners after the exception won't
/// be invoked.
///
template<class prototype,
template<class prototype = void (void),
bool exceptions = true>
struct callbacks;