From 5b8f2b6d7458e5e8e7614ce0167cff331f0867d8 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Tue, 10 Oct 2023 13:07:04 -0400 Subject: [PATCH] cosmetic: comments --- include/xo/callback/CallbackSet.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/xo/callback/CallbackSet.hpp b/include/xo/callback/CallbackSet.hpp index 05f6c5fa..c15aeb34 100644 --- a/include/xo/callback/CallbackSet.hpp +++ b/include/xo/callback/CallbackSet.hpp @@ -65,7 +65,9 @@ namespace xo { * RemoveCallback: deferred CallbackSet::remove_callback(.fn) */ CbsetCmdEnum cmd_ = AddCallback; + /* operate on callback with this id */ CallbackId id_; + /* callback function to add/remove */ Fn fn_; }; /*ReentrantCbsetCmd*/