Skip to content

Commit 4acf00f

Browse files
committed
signal_impl: Doesn't need to derive from notifiable.
1 parent 543a934 commit 4acf00f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

sigc++/signal_base.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ namespace internal
4444
* invalid slots from the list.
4545
*/
4646
struct SIGC_API signal_impl
47-
: public notifiable,
48-
public std::enable_shared_from_this<signal_impl>
47+
: public std::enable_shared_from_this<signal_impl>
4948
{
5049
using size_type = std::size_t;
5150
using slot_list = std::list<slot_base>;

0 commit comments

Comments
 (0)