From 98d04ebb2fa1fd6b24f597890a84ca1861050b22 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Fri, 27 Sep 2019 21:40:19 -0700 Subject: [PATCH] ircd::util::callbacks: Add note to comment. --- include/ircd/util/callbacks.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/ircd/util/callbacks.h b/include/ircd/util/callbacks.h index 9dbeffe64..257a6695d 100644 --- a/include/ircd/util/callbacks.h +++ b/include/ircd/util/callbacks.h @@ -18,7 +18,9 @@ inline namespace util /// browser-javascript land: it is window.onload.addEventListener() in lieu /// of assigning window.onload = function(). This is a list of multiple /// callbacks listening for invocation. The listener is responsible for - /// both adding and removing itself using the std list interface. + /// both adding and removing itself using the std list interface (Note: + /// convenience templates for this which elide as much boilerplate as + /// possible have been provided below). /// /// The template provides an option for whether exceptions should propagate /// to the caller. If they propagate, all listeners after the exception won't