diff options
Diffstat (limited to 'sigc++/signal_base.h')
-rw-r--r-- | sigc++/signal_base.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sigc++/signal_base.h b/sigc++/signal_base.h index 3027c69..aa27bc2 100644 --- a/sigc++/signal_base.h +++ b/sigc++/signal_base.h @@ -266,6 +266,11 @@ protected: * @ref sigc::signal_with_accumulator::connect() "sigc::signal::connect()". */ +//TODO: When we can break ABI, let signal_base derive from trackable again. +// It does in sigc++2. Otherwise the slot returned from signal::make_slot() +// is not automatically disconnected when the signal is deleted. +// https://github.com/libsigcplusplus/libsigcplusplus/issues/80 + /** Base class for the @ref sigc::signal<T_return(T_arg...)> "sigc::signal" template. * %signal_base integrates most of the interface of the derived * @ref sigc::signal<T_return(T_arg...)> "sigc::signal" template. |