summaryrefslogtreecommitdiff
path: root/sigc++
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-04-28 12:25:50 +0200
committerMurray Cumming <murrayc@murrayc.com>2016-04-28 12:26:41 +0200
commit4acf00f32f578cc7ee196edb9a6f75f684a0ffb9 (patch)
tree7b2006bac98ac3d8aa650c97b935fb4d60ea3429 /sigc++
parent543a93429b0c83191978dff6fce82d364ee60ce8 (diff)
downloadsigc++-4acf00f32f578cc7ee196edb9a6f75f684a0ffb9.tar.gz
signal_impl: Doesn't need to derive from notifiable.
Diffstat (limited to 'sigc++')
-rw-r--r--sigc++/signal_base.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sigc++/signal_base.h b/sigc++/signal_base.h
index de72647..0c491fc 100644
--- a/sigc++/signal_base.h
+++ b/sigc++/signal_base.h
@@ -44,8 +44,7 @@ namespace internal
* invalid slots from the list.
*/
struct SIGC_API signal_impl
- : public notifiable,
- public std::enable_shared_from_this<signal_impl>
+ : public std::enable_shared_from_this<signal_impl>
{
using size_type = std::size_t;
using slot_list = std::list<slot_base>;