summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjell.ahlstedt@bredband.net>2015-10-31 09:57:06 +0100
committerKjell Ahlstedt <kjell.ahlstedt@bredband.net>2015-10-31 09:57:06 +0100
commit00d7c733fafd737d42747a01483ed304cce61e90 (patch)
tree255de2c5bdbb8bf6ebc99b41d5a06b187ddf8bc6
parentcabc88f6c2e25432a8e6245c5af114ebb0de04b8 (diff)
downloadsigc++-00d7c733fafd737d42747a01483ed304cce61e90.tar.gz
trackable: Add a comment
-rw-r--r--sigc++/trackable.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/sigc++/trackable.cc b/sigc++/trackable.cc
index 5702b99..385f97c 100644
--- a/sigc++/trackable.cc
+++ b/sigc++/trackable.cc
@@ -37,9 +37,12 @@ trackable::trackable(const trackable& /*src*/)
: callback_list_(nullptr)
{}
-// Don't copy the notification list.
+// Don't move the notification list.
// The objects watching src don't need to be notified when the new object dies.
// They need to be notified now, because src probably becomes useless.
+//
+// If trackable's move constructor is modified, check if Glib::Object's
+// move constructor should be modified similarly.
trackable::trackable(trackable&& src) noexcept
: callback_list_(nullptr)
{